msi: Add a stub for MsiGetLastErrorRecord.
This commit is contained in:
parent
576b8a5920
commit
40a76a58e3
|
@ -41,7 +41,7 @@
|
|||
45 stdcall MsiEnumProductsW(long ptr)
|
||||
46 stdcall MsiEvaluateConditionA(long str)
|
||||
47 stdcall MsiEvaluateConditionW(long wstr)
|
||||
48 stub MsiGetLastErrorRecord
|
||||
48 stdcall MsiGetLastErrorRecord()
|
||||
49 stdcall MsiGetActiveDatabase(long)
|
||||
50 stdcall MsiGetComponentStateA(long str ptr ptr)
|
||||
51 stdcall MsiGetComponentStateW(long wstr ptr ptr)
|
||||
|
|
|
@ -639,6 +639,12 @@ MSIDBERROR WINAPI MsiViewGetErrorA( MSIHANDLE handle, LPSTR szColumnNameBuffer,
|
|||
return r;
|
||||
}
|
||||
|
||||
MSIHANDLE WINAPI MsiGetLastErrorRecord( void )
|
||||
{
|
||||
FIXME("\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
DEFINE_GUID( CLSID_MsiTransform, 0x000c1082, 0x0000, 0x0000, 0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
|
||||
static UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
|
||||
|
|
Loading…
Reference in New Issue