msi: Forward MsiDatabaseMergeA to MsiDatabaseMergeW.

oldstable
James Hawkins 2008-09-30 20:56:27 -05:00 committed by Alexandre Julliard
parent 525865447e
commit 4749ee2662
1 changed files with 9 additions and 2 deletions

View File

@ -986,10 +986,17 @@ end:
UINT WINAPI MsiDatabaseMergeA(MSIHANDLE hDatabase, MSIHANDLE hDatabaseMerge,
LPCSTR szTableName)
{
FIXME("(%ld, %ld, %s): stub!\n", hDatabase, hDatabaseMerge,
UINT r;
LPWSTR table;
TRACE("(%ld, %ld, %s)\n", hDatabase, hDatabaseMerge,
debugstr_a(szTableName));
return ERROR_CALL_NOT_IMPLEMENTED;
table = strdupAtoW(szTableName);
r = MsiDatabaseMergeW(hDatabase, hDatabaseMerge, table);
msi_free(table);
return r;
}
UINT WINAPI MsiDatabaseMergeW(MSIHANDLE hDatabase, MSIHANDLE hDatabaseMerge,