Declare MsiExportDatabase* in the spec file, and fix a typo.

This commit is contained in:
Mike McCormack 2005-04-26 14:30:15 +00:00 committed by Alexandre Julliard
parent 0b3c79f712
commit f47c0b2e29
2 changed files with 3 additions and 3 deletions

View File

@ -334,7 +334,7 @@ UINT WINAPI MsiDatabaseExportA( MSIHANDLE handle, LPCSTR szTable,
goto end;
}
r = MsiDatabaseImportW( handle, path, file );
r = MsiDatabaseExportW( handle, table, path, file );
end:
HeapFree( GetProcessHeap(), 0, table );

View File

@ -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)