Added stub implementations for MsiEnumPatchesA/W.
This commit is contained in:
parent
00efadd93b
commit
d3d5ad6b7a
|
@ -1752,3 +1752,25 @@ UINT WINAPI MsiReinstallFeatureA( LPCSTR szProduct, LPCSTR szFeature,
|
||||||
dwReinstallMode);
|
dwReinstallMode);
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* MsiEnumPatchesA [MSI.@]
|
||||||
|
*/
|
||||||
|
UINT WINAPI MsiEnumPatchesA( LPCSTR szProduct, DWORD iPatchIndex,
|
||||||
|
LPSTR lpPatchBuf, LPSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
|
||||||
|
{
|
||||||
|
FIXME("%s %ld %p %p %p\n", debugstr_a(szProduct),
|
||||||
|
iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
||||||
|
return ERROR_NO_MORE_ITEMS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* MsiEnumPatchesW [MSI.@]
|
||||||
|
*/
|
||||||
|
UINT WINAPI MsiEnumPatchesW( LPCWSTR szProduct, DWORD iPatchIndex,
|
||||||
|
LPWSTR lpPatchBuf, LPWSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
|
||||||
|
{
|
||||||
|
FIXME("%s %ld %p %p %p\n", debugstr_w(szProduct),
|
||||||
|
iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
||||||
|
return ERROR_NO_MORE_ITEMS;
|
||||||
|
}
|
||||||
|
|
|
@ -173,8 +173,8 @@
|
||||||
177 stub MsiAdvertiseScriptW
|
177 stub MsiAdvertiseScriptW
|
||||||
178 stub MsiGetPatchInfoA
|
178 stub MsiGetPatchInfoA
|
||||||
179 stub MsiGetPatchInfoW
|
179 stub MsiGetPatchInfoW
|
||||||
180 stub MsiEnumPatchesA
|
180 stdcall MsiEnumPatchesA(str long ptr ptr ptr)
|
||||||
181 stub MsiEnumPatchesW
|
181 stdcall MsiEnumPatchesW(str long ptr ptr ptr)
|
||||||
182 stdcall -private DllGetVersion(ptr)
|
182 stdcall -private DllGetVersion(ptr)
|
||||||
183 stub MsiGetProductCodeFromPackageCodeA
|
183 stub MsiGetProductCodeFromPackageCodeA
|
||||||
184 stub MsiGetProductCodeFromPackageCodeW
|
184 stub MsiGetProductCodeFromPackageCodeW
|
||||||
|
|
|
@ -522,6 +522,10 @@ UINT WINAPI MsiSourceListAddMediaDiskA(LPCSTR, LPCSTR, MSIINSTALLCONTEXT, DWORD,
|
||||||
UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR, LPCWSTR, MSIINSTALLCONTEXT, DWORD, DWORD, LPCWSTR, LPCWSTR);
|
UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR, LPCWSTR, MSIINSTALLCONTEXT, DWORD, DWORD, LPCWSTR, LPCWSTR);
|
||||||
#define MsiSourceListAddMediaDisk WINELIB_NAME_AW(MsiSourceListAddMediaDisk)
|
#define MsiSourceListAddMediaDisk WINELIB_NAME_AW(MsiSourceListAddMediaDisk)
|
||||||
|
|
||||||
|
UINT WINAPI MsiEnumPatchesA(LPCSTR, DWORD, LPSTR, LPSTR, DWORD*);
|
||||||
|
UINT WINAPI MsiEnumPatchesW(LPCWSTR, DWORD, LPWSTR, LPWSTR, DWORD*);
|
||||||
|
#define MsiEnumPatches WINELIB_NAME_AW(MsiEnumPatches)
|
||||||
|
|
||||||
/* Non Unicode */
|
/* Non Unicode */
|
||||||
UINT WINAPI MsiCloseHandle(MSIHANDLE);
|
UINT WINAPI MsiCloseHandle(MSIHANDLE);
|
||||||
UINT WINAPI MsiCloseAllHandles(void);
|
UINT WINAPI MsiCloseAllHandles(void);
|
||||||
|
|
Loading…
Reference in New Issue