From f47c0b2e2954570f05cd300e79764a34747f82ab Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Tue, 26 Apr 2005 14:30:15 +0000 Subject: [PATCH] Declare MsiExportDatabase* in the spec file, and fix a typo. --- dlls/msi/database.c | 2 +- dlls/msi/msi.spec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/msi/database.c b/dlls/msi/database.c index 6d7bd1b9e5b..35a6965e24e 100644 --- a/dlls/msi/database.c +++ b/dlls/msi/database.c @@ -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 ); diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec index 600f3538a9e..f03dcf7f68e 100644 --- a/dlls/msi/msi.spec +++ b/dlls/msi/msi.spec @@ -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)