Stub implementation for MsiVerifyPackage

Mike McCormack mike at codeweavers.com
Tue Nov 4 01:32:47 CST 2003


ChangeLog:
* Stub implementation for MsiVerifyPackage
-------------- next part --------------
Index: dlls/msi/msi.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.c,v
retrieving revision 1.6
diff -u -r1.6 msi.c
--- dlls/msi/msi.c	30 Oct 2003 22:47:42 -0000	1.6
+++ dlls/msi/msi.c	4 Nov 2003 07:27:11 -0000
@@ -749,6 +815,18 @@
                                     LPWSTR szValue, DWORD *pccbValue )
 {
     FIXME("%ld %s %p %p\n", hProduct, debugstr_w(szProperty), szValue, pccbValue);
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+UINT WINAPI MsiVerifyPackageA( LPCSTR szPackage )
+{
+    FIXME("%s\n", debugstr_a(szPackage) );
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+UINT WINAPI MsiVerifyPackageW( LPCWSTR szPackage )
+{
+    FIXME("%s\n", debugstr_w(szPackage) );
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
Index: dlls/msi/msi.spec
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.spec,v
retrieving revision 1.6
diff -u -r1.6 msi.spec
--- dlls/msi/msi.spec	30 Oct 2003 22:47:42 -0000	1.6
+++ dlls/msi/msi.spec	4 Nov 2003 07:27:11 -0000
@@ -153,8 +153,8 @@
 153 stub MsiSummaryInfoSetPropertyW
 154 stub MsiUseFeatureA
 155 stub MsiUseFeatureW
-156 stub MsiVerifyPackageA
-157 stub MsiVerifyPackageW
+156 stdcall MsiVerifyPackageA(str)
+157 stdcall MsiVerifyPackageW(wstr)
 158 stdcall MsiViewClose(long)
 159 stdcall MsiViewExecute(long long)
 160 stdcall MsiViewFetch(long ptr)
Index: include/msi.h
===================================================================
RCS file: /home/wine/wine/include/msi.h,v
retrieving revision 1.3
diff -u -r1.3 msi.h
--- include/msi.h	30 Oct 2003 22:47:42 -0000	1.3
+++ include/msi.h	4 Nov 2003 07:27:11 -0000
@@ -99,4 +99,8 @@
 UINT WINAPI MsiProvideComponentFromDescriptorW(LPCWSTR,LPWSTR,DWORD*,DWORD*);
 #define     MsiProvideComponentFromDescriptor WINELIB_NAME_AW(MsiProvideComponentFromDescriptor)
 
+UINT WINAPI MsiVerifyPackageA(LPCSTR);
+UINT WINAPI MsiVerifyPackageW(LPCWSTR);
+#define     MsiVerifyPackage WINELIB_NAME_AW(MsiVerifyPackage)
+
 #endif /* __WINE_MSI_H */


More information about the wine-patches mailing list