James Hawkins : msi: Add missing declarations to the public headers.
Module: wine Branch: master Commit: 5fd3c4ad15bfe7f976ca421c81f285487ddced29 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5fd3c4ad15bfe7f976ca421c81... Author: James Hawkins <truiken(a)gmail.com> Date: Mon Oct 9 00:05:27 2006 -0700 msi: Add missing declarations to the public headers. --- include/msi.h | 8 ++++++++ include/msiquery.h | 10 ++++++++++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/include/msi.h b/include/msi.h index 17b3db6..28b9c51 100644 --- a/include/msi.h +++ b/include/msi.h @@ -528,6 +528,14 @@ INSTALLSTATE WINAPI MsiLocateComponentA( INSTALLSTATE WINAPI MsiLocateComponentW(LPCWSTR, LPWSTR, DWORD *); #define MsiLocateComponent WINELIB_NAME_AW(MsiLocateComponent) +UINT WINAPI MsiSourceListAddSourceA(LPCSTR, LPCSTR, DWORD, LPCSTR); +UINT WINAPI MsiSourceListAddSourceW(LPCWSTR, LPCWSTR, DWORD, LPCWSTR); +#define MsiSourceListAddSource WINELIB_NAME_AW(MsiSourceListAddSource) + +UINT WINAPI MsiSourceListClearAllA(LPCSTR, LPCSTR, DWORD); +UINT WINAPI MsiSourceListClearAllW(LPCWSTR, LPCWSTR, DWORD); +#define MsiSourceListClearAll WINELIB_NAME_AW(MsiSourceListClearAll) + UINT WINAPI MsiSourceListGetInfoA(LPCSTR, LPCSTR, MSIINSTALLCONTEXT, DWORD, LPCSTR, LPSTR, LPDWORD); UINT WINAPI MsiSourceListGetInfoW(LPCWSTR, LPCWSTR, MSIINSTALLCONTEXT, DWORD, LPCWSTR, LPWSTR, LPDWORD); #define MsiSourceListGetInfo WINELIB_NAME_AW(MsiSourceListGetInfo) diff --git a/include/msiquery.h b/include/msiquery.h index 8ea24b6..231f9be 100644 --- a/include/msiquery.h +++ b/include/msiquery.h @@ -290,4 +290,14 @@ BOOL WINAPI MsiSetMode(MSIHANDLE, MSIRUN UINT WINAPI MsiViewModify(MSIHANDLE, MSIMODIFY, MSIHANDLE); +UINT WINAPI MsiGetFeatureCostA(MSIHANDLE, LPCSTR, MSICOSTTREE, INSTALLSTATE, INT*); +UINT WINAPI MsiGetFeatureCostW(MSIHANDLE, LPCWSTR, MSICOSTTREE, INSTALLSTATE, INT*); +#define MsiGetFeatureCost WINELIB_NAME_AW(MsiGetFeatureCost) + +LANGID WINAPI MsiGetLanguage(MSIHANDLE); + +UINT WINAPI MsiSetInstallLevel(MSIHANDLE, int); + +MSIHANDLE WINAPI MsiGetLastErrorRecord(); + #endif /* __WINE_MSIQUERY_H */
participants (1)
-
Alexandre Julliard