MSI: Add definition for the USERINFOSTATE enumeration

Mike McCormack mike at codeweavers.com
Tue Jan 18 05:04:39 CST 2005


ChangeLog:
* Add definition for the USERINFOSTATE enumeration
-------------- next part --------------
Index: include/msi.h
===================================================================
RCS file: /home/wine/wine/include/msi.h,v
retrieving revision 1.18
diff -u -r1.18 msi.h
--- include/msi.h	6 Jan 2005 19:44:46 -0000	1.18
+++ include/msi.h	18 Jan 2005 11:05:06 -0000
@@ -55,6 +55,15 @@
     INSTALLUILEVEL_SOURCERESONLY = 0x100
 } INSTALLUILEVEL;
 
+typedef enum tagUSERINFOSTATE
+{
+    USERINFOSTATE_MOREDATA = -3,
+    USERINFOSTATE_INVALIDARG = -2,
+    USERINFOSTATE_UNKNOWN = -1,
+    USERINFOSTATE_ABSENT = 0,
+    USERINFOSTATE_PRESENT = 1,
+} USERINFOSTATE;
+
 typedef enum tagINSTALLLEVEL
 {
     INSTALLLEVEL_DEFAULT = 0,


More information about the wine-patches mailing list