Commit 9eefc04f authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Add a stub implementation for MsiEnumProductsEx{A, W}.

parent bab2ddb7
...@@ -238,8 +238,8 @@ ...@@ -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, ...@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment