PATCH: BSCF enum is wrong

Marcus Meissner marcus at jet.franken.de
Sat Jun 16 09:57:03 CDT 2001


Hi,

verified against SDK headers.

Ciao, Marcus

Changelog:
	BSCF enum defines flags, not an enumeration.

Index: include/urlmon.h
===================================================================
RCS file: /home/wine/wine/include/urlmon.h,v
retrieving revision 1.3
diff -u -r1.3 urlmon.h
--- include/urlmon.h	2001/05/31 21:38:38	1.3
+++ include/urlmon.h	2001/06/16 15:53:07
@@ -38,11 +38,11 @@
 } BINDINFO;
 
 typedef enum {
-    BSCF_FIRSTDATANOTIFICATION,
-    BSCF_INTERMEDIATEDATANOTIFICATION,
-    BSCF_LASTDATANOTIFICATION,
-    BSCF_DATAFULLYAVAILABLE,
-    BSCF_AVAILABLEDATASIZEUNKNOWN
+    BSCF_FIRSTDATANOTIFICATION = 0x01,
+    BSCF_INTERMEDIATEDATANOTIFICATION = 0x02,
+    BSCF_LASTDATANOTIFICATION = 0x04,
+    BSCF_DATAFULLYAVAILABLE = 0x08,
+    BSCF_AVAILABLEDATASIZEUNKNOWN = 0x10
 } BSCF;
 
 #define MK_S_ASYNCHRONOUS 0x000401E8




More information about the wine-patches mailing list