msi: Fix wrong calling convention.

This commit is contained in:
Nikolay Sivov 2009-04-27 00:29:10 +04:00 committed by Alexandre Julliard
parent 4d57ee3409
commit 7daf9b6ef5
1 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ UINT WINAPI MsiDetermineApplicablePatchesW(LPCWSTR szProductPackagePath,
return ERROR_CALL_NOT_IMPLEMENTED;
}
UINT MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
UINT WINAPI MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOA pPatchInfo)
{
FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_a(szProductCode),
@ -416,7 +416,7 @@ UINT MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
return ERROR_CALL_NOT_IMPLEMENTED;
}
UINT MsiDeterminePatchSequenceW(LPCWSTR szProductCode, LPCWSTR szUserSid,
UINT WINAPI MsiDeterminePatchSequenceW(LPCWSTR szProductCode, LPCWSTR szUserSid,
MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOW pPatchInfo)
{
FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_w(szProductCode),