Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
129c8dc9
Commit
129c8dc9
authored
May 28, 2002
by
Warren Turkal
Committed by
Alexandre Julliard
May 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added structures and some constants for stream handling.
parent
a8693258
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
winbase.h
include/winbase.h
+20
-0
No files found.
include/winbase.h
View file @
129c8dc9
...
...
@@ -1913,6 +1913,26 @@ static inline PVOID WINAPI InterlockedExchangePointer( PVOID *dest, PVOID val )
/* If this is not declared, we cannot compile many sources written with C++. */
int
WINAPI
WinMain
(
HINSTANCE
,
HINSTANCE
,
LPSTR
,
int
);
/* Streams */
#define BACKUP_INVALID 0
#define BACKUP_DATA 1
#define BACKUP_EA_DATA 2
#define BACKUP_SECURITY_DATA 3
#define BACKUP_ALTERNATE_DATA 4
#define BACKUP_LINK 5
#define BACKUP_PROPERTY_DATA 6
#define BACKUP_OBJECT_ID 7
#define BACKUP_REPARSE_DATA 8
#define BACKUP_SPARSE_BLOCK 9
typedef
struct
_WIN32_STREAM_ID
{
DWORD
dwStreamID
;
DWORD
dwStreamAttributes
;
LARGE_INTEGER
Size
;
DWORD
dwStreamNameSize
;
WCHAR
cStreamName
[
ANYSIZE_ARRAY
];
}
WIN32_STREAM_ID
,
*
LPWIN32_STREAM_ID
;
#ifdef __cplusplus
}
#endif
...
...
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