msi: Add a stub implementation for MsiEnumProductsEx{A, W}.
This commit is contained in:
parent
bab2ddb77e
commit
9eefc04f6b
@ -238,8 +238,8 @@
|
|||||||
242 stub MsiExtractPatchXMLDataW
|
242 stub MsiExtractPatchXMLDataW
|
||||||
243 stub MsiGetPatchInfoExA
|
243 stub MsiGetPatchInfoExA
|
||||||
244 stub MsiGetPatchInfoExW
|
244 stub MsiGetPatchInfoExW
|
||||||
245 stub MsiEnumProductsExA
|
245 stdcall MsiEnumProductsExA(str str long long ptr ptr ptr ptr)
|
||||||
246 stub MsiEnumProductsExW
|
246 stdcall MsiEnumProductsExW(wstr wstr long long ptr ptr ptr ptr)
|
||||||
247 stub MsiGetProductInfoExA
|
247 stub MsiGetProductInfoExA
|
||||||
248 stub MsiGetProductInfoExW
|
248 stub MsiGetProductInfoExW
|
||||||
249 stub MsiQueryComponentStateA
|
249 stub MsiQueryComponentStateA
|
||||||
|
@ -1068,3 +1068,23 @@ UINT WINAPI MsiEnumPatchesW( LPCWSTR szProduct, DWORD iPatchIndex,
|
|||||||
iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
||||||
return ERROR_NO_MORE_ITEMS;
|
return ERROR_NO_MORE_ITEMS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT WINAPI MsiEnumProductsExA( LPCSTR szProductCode, LPCSTR szUserSid,
|
||||||
|
DWORD dwContext, DWORD dwIndex, LPSTR szInstalledProductCode,
|
||||||
|
MSIINSTALLCONTEXT* pdwInstalledContext, LPSTR szSid, LPDWORD pcchSid)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %d %d %p %p %p %p\n", debugstr_a(szProductCode), debugstr_a(szUserSid),
|
||||||
|
dwContext, dwIndex, szInstalledProductCode, pdwInstalledContext,
|
||||||
|
szSid, pcchSid);
|
||||||
|
return ERROR_NO_MORE_ITEMS;
|
||||||
|
}
|
||||||
|
|
||||||
|
UINT WINAPI MsiEnumProductsExW( LPCWSTR szProductCode, LPCWSTR szUserSid,
|
||||||
|
DWORD dwContext, DWORD dwIndex, LPWSTR szInstalledProductCode,
|
||||||
|
MSIINSTALLCONTEXT* pdwInstalledContext, LPWSTR szSid, LPDWORD pcchSid)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %d %d %p %p %p %p\n", debugstr_w(szProductCode), debugstr_w(szUserSid),
|
||||||
|
dwContext, dwIndex, szInstalledProductCode, pdwInstalledContext,
|
||||||
|
szSid, pcchSid);
|
||||||
|
return ERROR_NO_MORE_ITEMS;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user