Module: wine Branch: refs/heads/master Commit: 40a76a58e3e3dd9e1f3673bf1ba223ff14c00721 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=40a76a58e3e3dd9e1f3673bf...
Author: Mike McCormack mike@codeweavers.com Date: Wed Jan 4 14:51:05 2006 +0100
msi: Add a stub for MsiGetLastErrorRecord.
---
dlls/msi/msi.spec | 2 +- dlls/msi/msiquery.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec index ee28694..802adef 100644 --- a/dlls/msi/msi.spec +++ b/dlls/msi/msi.spec @@ -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) diff --git a/dlls/msi/msiquery.c b/dlls/msi/msiquery.c index 2cbfbed..d023ae4 100644 --- a/dlls/msi/msiquery.c +++ b/dlls/msi/msiquery.c @@ -639,6 +639,12 @@ MSIDBERROR WINAPI MsiViewGetErrorA( MSIH 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,