From 72706972d2b647619de8286e13b84e9861898ca8 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Sat, 1 Mar 2008 02:07:49 -0600 Subject: [PATCH] msi: Add definitions for MsiEnumComponentCosts. --- include/msi.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/msi.h b/include/msi.h index 93c4c282531..4adc49d5ec3 100644 --- a/include/msi.h +++ b/include/msi.h @@ -385,6 +385,10 @@ UINT WINAPI MsiApplyPatchA(LPCSTR, LPCSTR, INSTALLTYPE, LPCSTR); UINT WINAPI MsiApplyPatchW(LPCWSTR, LPCWSTR, INSTALLTYPE, LPCWSTR); #define MsiApplyPatch WINELIB_NAME_AW(MsiApplyPatch) +UINT WINAPI MsiEnumComponentCostsA(MSIHANDLE, LPCSTR, DWORD, INSTALLSTATE, LPSTR, LPDWORD, LPINT, LPINT); +UINT WINAPI MsiEnumComponentCostsW(MSIHANDLE, LPCWSTR, DWORD, INSTALLSTATE, LPWSTR, LPDWORD, LPINT, LPINT); +#define MsiEnumComponentCosts WINELIB_NAME_AW(MsiEnumComponentCosts) + UINT WINAPI MsiEnumProductsA(DWORD, LPSTR); UINT WINAPI MsiEnumProductsW(DWORD, LPWSTR); #define MsiEnumProducts WINELIB_NAME_AW(MsiEnumProducts) -- 2.11.4.GIT