Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
07c60df9
Commit
07c60df9
authored
Nov 22, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix "l" numeric constants in winbase.h.
parent
e1a65b3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
winbase.h
include/winbase.h
+10
-10
No files found.
include/winbase.h
View file @
07c60df9
...
...
@@ -698,15 +698,15 @@ typedef struct _TIME_ZONE_INFORMATION{
/* File creation flags
*/
#define FILE_FLAG_WRITE_THROUGH
0x80000000UL
#define FILE_FLAG_OVERLAPPED
0x40000000L
#define FILE_FLAG_NO_BUFFERING
0x20000000L
#define FILE_FLAG_RANDOM_ACCESS
0x10000000L
#define FILE_FLAG_SEQUENTIAL_SCAN
0x08000000L
#define FILE_FLAG_DELETE_ON_CLOSE
0x04000000L
#define FILE_FLAG_BACKUP_SEMANTICS
0x02000000L
#define FILE_FLAG_POSIX_SEMANTICS
0x01000000L
#define FILE_FLAG_OPEN_REPARSE_POINT
0x00200000L
#define FILE_FLAG_WRITE_THROUGH
0x80000000
#define FILE_FLAG_OVERLAPPED
0x40000000
#define FILE_FLAG_NO_BUFFERING
0x20000000
#define FILE_FLAG_RANDOM_ACCESS
0x10000000
#define FILE_FLAG_SEQUENTIAL_SCAN
0x08000000
#define FILE_FLAG_DELETE_ON_CLOSE
0x04000000
#define FILE_FLAG_BACKUP_SEMANTICS
0x02000000
#define FILE_FLAG_POSIX_SEMANTICS
0x01000000
#define FILE_FLAG_OPEN_REPARSE_POINT
0x00200000
#define CREATE_NEW 1
#define CREATE_ALWAYS 2
#define OPEN_EXISTING 3
...
...
@@ -1671,7 +1671,7 @@ WINBASEAPI DWORD WINAPI GetFileSize(HANDLE,LPDWORD);
WINBASEAPI
BOOL
WINAPI
GetFileSizeEx
(
HANDLE
,
PLARGE_INTEGER
);
WINBASEAPI
BOOL
WINAPI
GetFileTime
(
HANDLE
,
LPFILETIME
,
LPFILETIME
,
LPFILETIME
);
WINBASEAPI
DWORD
WINAPI
GetFileType
(
HANDLE
);
#define GetFreeSpace(w) (
0x100000L
)
#define GetFreeSpace(w) (
__MSABI_LONG(0x100000)
)
WINBASEAPI
DWORD
WINAPI
GetFullPathNameA
(
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
*
);
WINBASEAPI
DWORD
WINAPI
GetFullPathNameW
(
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
*
);
#define GetFullPathName WINELIB_NAME_AW(GetFullPathName)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment