https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0a1c22503d3fa93d95d0f8...
commit 0a1c22503d3fa93d95d0f86626ddc3a1df3928f3 Author: winesync ros-dev@reactos.org AuthorDate: Sun Mar 13 23:44:03 2022 +0100 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Sun Mar 20 19:28:39 2022 +0100
[WINESYNC] include: Fix size of MsiEnumClientsEx[AW]'s array argument (GCC).
Signed-off-by: Alex Henrie alexhenrie24@gmail.com Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
wine commit id 14e205ff502ec7275d2c4cf59b1446ac0a294416 by Alex Henrie alexhenrie24@gmail.com --- sdk/include/psdk/msi.h | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/sdk/include/psdk/msi.h b/sdk/include/psdk/msi.h index f1a19177ed6..b79efaea5c6 100644 --- a/sdk/include/psdk/msi.h +++ b/sdk/include/psdk/msi.h @@ -604,6 +604,10 @@ MsiEnumClientsW(
#define MsiEnumClients WINELIB_NAME_AW(MsiEnumClients)
+UINT WINAPI MsiEnumClientsExA(_In_ LPCSTR szComponent, _In_opt_ LPCSTR szUserSid, _In_ DWORD dwContext, _In_ DWORD dwProductIndex, _Out_opt_ CHAR szProductBuf[39], _Out_opt_ MSIINSTALLCONTEXT* pdwInstalledContext, _Out_opt_ LPSTR szSid, _Inout_opt_ LPDWORD pcchSid); +UINT WINAPI MsiEnumClientsExW(_In_ LPCWSTR szComponent, _In_opt_ LPCWSTR szUserSid, _In_ DWORD dwContext, _In_ DWORD dwProductIndex, _Out_opt_ WCHAR szProductBuf[39], _Out_opt_ MSIINSTALLCONTEXT* pdwInstalledContext, _Out_opt_ LPWSTR szSid, _Inout_opt_ LPDWORD pcchSid); +#define MsiEnumClientsEx WINELIB_NAME_AW(MsiEnumClientsEx) + UINT WINAPI MsiOpenPackageA(_In_ LPCSTR, _Out_ MSIHANDLE*); UINT WINAPI MsiOpenPackageW(_In_ LPCWSTR, _Out_ MSIHANDLE*); #define MsiOpenPackage WINELIB_NAME_AW(MsiOpenPackage)