mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
More stream definitions.
This commit is contained in:
parent
fb24f71e5b
commit
37fb021a5a
@ -1919,7 +1919,8 @@ 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 */
|
/* Stream data structures and defines */
|
||||||
|
/*the types of backup data -- WIN32_STREAM_ID.dwStreamID below*/
|
||||||
#define BACKUP_INVALID 0
|
#define BACKUP_INVALID 0
|
||||||
#define BACKUP_DATA 1
|
#define BACKUP_DATA 1
|
||||||
#define BACKUP_EA_DATA 2
|
#define BACKUP_EA_DATA 2
|
||||||
@ -1931,6 +1932,13 @@ int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR,int);
|
|||||||
#define BACKUP_REPARSE_DATA 8
|
#define BACKUP_REPARSE_DATA 8
|
||||||
#define BACKUP_SPARSE_BLOCK 9
|
#define BACKUP_SPARSE_BLOCK 9
|
||||||
|
|
||||||
|
/*flags for WIN32_STREAM_ID.dwStreamAttributes below*/
|
||||||
|
#define STREAM_NORMAL_ATTRIBUTE 0
|
||||||
|
#define STREAM_MODIFIED_WHEN_READ 1
|
||||||
|
#define STREAM_CONTAINS_SECURITY 2
|
||||||
|
#define STREAM_CONTAINS_PROPERTIES 4
|
||||||
|
#define STREAM_SPARSE_ATTRIBUTE 8
|
||||||
|
|
||||||
typedef struct _WIN32_STREAM_ID {
|
typedef struct _WIN32_STREAM_ID {
|
||||||
DWORD dwStreamID;
|
DWORD dwStreamID;
|
||||||
DWORD dwStreamAttributes;
|
DWORD dwStreamAttributes;
|
||||||
|
Loading…
Reference in New Issue
Block a user