msi: suminfo

Aric Stewart aric at codeweavers.com
Mon Jan 31 19:33:33 CST 2005


Add some more suminfo stubs.
-------------- next part --------------
Index: dlls/msi/suminfo.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/suminfo.c,v
retrieving revision 1.11
diff -u -u -r1.11 suminfo.c
--- dlls/msi/suminfo.c	24 Jan 2005 11:24:35 -0000	1.11
+++ dlls/msi/suminfo.c	1 Feb 2005 01:34:08 -0000
@@ -272,3 +272,22 @@
 
     return ERROR_SUCCESS;
 }
+
+UINT WINAPI MsiSummaryInfoSetPropertyA( MSIHANDLE hSummaryInfo, UINT uiProperty,
+                                       UINT uiDataType, INT iValue, 
+                                       FILETIME* pftValue, LPSTR szValue)
+{
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+UINT WINAPI MsiSummaryInfoSetPropertyW( MSIHANDLE hSummaryInfo, UINT uiProperty,
+                                       UINT uiDataType, INT iValue, 
+                                       FILETIME* pftValue, LPWSTR szValue)
+{
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+UINT WINAPI MsiSummaryInfoPersist(MSIHANDLE hSummaryInfo)
+{
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
Index: dlls/msi/msi.spec
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.spec,v
retrieving revision 1.30
diff -u -u -r1.30 msi.spec
--- dlls/msi/msi.spec	26 Jan 2005 19:41:13 -0000	1.30
+++ dlls/msi/msi.spec	1 Feb 2005 01:34:08 -0000
@@ -148,9 +148,9 @@
 148 stdcall MsiSummaryInfoGetPropertyA(long long ptr ptr ptr ptr ptr)
 149 stdcall MsiSummaryInfoGetPropertyCount(long ptr)
 150 stdcall MsiSummaryInfoGetPropertyW(long long ptr ptr ptr ptr ptr)
-151 stub MsiSummaryInfoPersist
-152 stub MsiSummaryInfoSetPropertyA
-153 stub MsiSummaryInfoSetPropertyW
+151 stdcall MsiSummaryInfoPersist(long)
+152 stdcall MsiSummaryInfoSetPropertyA(long long long long ptr str)
+153 stdcall MsiSummaryInfoSetPropertyW(long long long long ptr wstr)
 154 stub MsiUseFeatureA
 155 stub MsiUseFeatureW
 156 stdcall MsiVerifyPackageA(str)


More information about the wine-patches mailing list