mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
Added structures and some constants for stream handling.
This commit is contained in:
parent
a8693258af
commit
129c8dc9f7
@ -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++. */
|
/* If this is not declared, we cannot compile many sources written with C++. */
|
||||||
int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR,int);
|
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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user