more stream support

Warren Turkal wturkal at cbu.edu
Sun Jun 2 22:10:36 CDT 2002


Index: winbase.h
===================================================================
RCS file: /home/wine/wine/include/winbase.h,v
retrieving revision 1.151
diff -u -3 -p -r1.151 winbase.h
--- winbase.h	31 May 2002 23:06:49 -0000	1.151
+++ winbase.h	3 Jun 2002 03:10:36 -0000
@@ -1919,7 +1919,8 @@ static inline PVOID WINAPI InterlockedEx
 /* If this is not declared, we cannot compile many sources written with C++. */
 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_DATA           1
 #define BACKUP_EA_DATA        2
@@ -1930,6 +1931,13 @@ int WINAPI WinMain(HINSTANCE,HINSTANCE,L
 #define BACKUP_OBJECT_ID      7
 #define BACKUP_REPARSE_DATA   8
 #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 {
 	DWORD   dwStreamID;



More information about the wine-patches mailing list