Declare some MSI functions

Mike McCormack mike at codeweavers.com
Mon Dec 1 07:14:59 CST 2003


ChangeLog:
* Declare some MSI functions
-------------- next part --------------
Index: include/msi.h
===================================================================
RCS file: /home/wine/wine/include/msi.h,v
retrieving revision 1.5
diff -u -r1.5 msi.h
--- include/msi.h	5 Nov 2003 01:50:30 -0000	1.5
+++ include/msi.h	1 Dec 2003 13:02:17 -0000
@@ -98,4 +98,8 @@
 UINT WINAPI MsiVerifyPackageW(LPCWSTR);
 #define     MsiVerifyPackage WINELIB_NAME_AW(MsiVerifyPackage)
 
+INSTALLSTATE WINAPI MsiQueryProductStateA(LPCSTR);
+INSTALLSTATE WINAPI MsiQueryProductStateW(LPCWSTR);
+#define     MsiQueryProductState WINELIB_NAME_AW(MsiQueryProductState)
+
 #endif /* __WINE_MSI_H */
Index: include/msiquery.h
===================================================================
RCS file: /home/wine/wine/include/msiquery.h,v
retrieving revision 1.4
diff -u -r1.4 msiquery.h
--- include/msiquery.h	5 Nov 2003 01:50:30 -0000	1.4
+++ include/msiquery.h	1 Dec 2003 13:02:17 -0000
@@ -118,5 +118,9 @@
 UINT WINAPI MsiGetComponentStateW(MSIHANDLE,LPWSTR,INSTALLSTATE*,INSTALLSTATE*);
 #define     MsiGetComponentState WINELIB_NAME_AW(MsiGetComponentState)
 
+MSICONDITION WINAPI MsiEvaluateConditionA(MSIHANDLE,LPCSTR);
+MSICONDITION WINAPI MsiEvaluateConditionW(MSIHANDLE,LPCWSTR);
+#define     MsiEvaluateCondition WINELIB_NAME_AW(MsiEvaluateCondition)
+
 
 #endif /* __WINE_MSIQUERY_H */


More information about the wine-patches mailing list