Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
07c60df9
Commit
07c60df9
authored
13 years ago
by
Michael Stefaniuc
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
include: Fix "l" numeric constants in winbase.h.
parent
e1a65b3a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/winbase.h
+10
-10
10 additions, 10 deletions
include/winbase.h
with
10 additions
and
10 deletions
include/winbase.h
+
10
−
10
View file @
07c60df9
...
...
@@ -698,15 +698,15 @@ typedef struct _TIME_ZONE_INFORMATION{
/* File creation flags
*/
#define FILE_FLAG_WRITE_THROUGH 0x80000000
UL
#define FILE_FLAG_OVERLAPPED
0x40000000
L
#define FILE_FLAG_NO_BUFFERING 0x20000000
L
#define FILE_FLAG_RANDOM_ACCESS 0x10000000
L
#define FILE_FLAG_SEQUENTIAL_SCAN 0x08000000
L
#define FILE_FLAG_DELETE_ON_CLOSE 0x04000000
L
#define FILE_FLAG_BACKUP_SEMANTICS 0x02000000
L
#define FILE_FLAG_POSIX_SEMANTICS 0x01000000
L
#define FILE_FLAG_OPEN_REPARSE_POINT 0x00200000
L
#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) (0x100000
L
)
#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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment