MSI: declare MsiExportDatabase* in the spec file, and fix a typo

Mike McCormack mike at codeweavers.com
Tue Apr 26 05:37:55 CDT 2005


ChangeLog:
* declare MsiExportDatabase* in the spec file, and fix a typo
-------------- next part --------------
Index: dlls/msi/database.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/database.c,v
retrieving revision 1.1
diff -u -p -r1.1 database.c
--- dlls/msi/database.c	29 Mar 2005 11:28:57 -0000	1.1
+++ dlls/msi/database.c	26 Apr 2005 10:38:03 -0000
@@ -334,7 +334,7 @@ UINT WINAPI MsiDatabaseExportA( MSIHANDL
             goto end;
     }
 
-    r = MsiDatabaseImportW( handle, path, file );
+    r = MsiDatabaseExportW( handle, table, path, file );
 
 end:
     HeapFree( GetProcessHeap(), 0, table );
Index: dlls/msi/msi.spec
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.spec,v
retrieving revision 1.35
diff -u -p -r1.35 msi.spec
--- dlls/msi/msi.spec	20 Apr 2005 12:50:05 -0000	1.35
+++ dlls/msi/msi.spec	26 Apr 2005 10:38:03 -0000
@@ -18,8 +18,8 @@
 18 stdcall MsiDatabaseApplyTransformA(long str long)
 19 stdcall MsiDatabaseApplyTransformW(long wstr long)
 20 stdcall MsiDatabaseCommit(long)
-21 stub MsiDatabaseExportA
-22 stub MsiDatabaseExportW
+21 stdcall MsiDatabaseExportA(long str str str)
+22 stdcall MsiDatabaseExportW(long wstr wstr wstr)
 23 stdcall MsiDatabaseGenerateTransformA(long long str long long)
 24 stdcall MsiDatabaseGenerateTransformW(long long wstr long long)
 25 stdcall MsiDatabaseGetPrimaryKeysA(long str ptr)


More information about the wine-patches mailing list