mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
Declare some MSI functions.
This commit is contained in:
parent
cd7328672e
commit
d72bd7ec2e
2 changed files with 8 additions and 0 deletions
|
@ -98,4 +98,8 @@ UINT WINAPI MsiVerifyPackageA(LPCSTR);
|
|||
UINT WINAPI MsiVerifyPackageW(LPCWSTR);
|
||||
#define MsiVerifyPackage WINELIB_NAME_AW(MsiVerifyPackage)
|
||||
|
||||
INSTALLSTATE WINAPI MsiQueryProductStateA(LPCSTR);
|
||||
INSTALLSTATE WINAPI MsiQueryProductStateW(LPCWSTR);
|
||||
#define MsiQueryProductState WINELIB_NAME_AW(MsiQueryProductState)
|
||||
|
||||
#endif /* __WINE_MSI_H */
|
||||
|
|
|
@ -118,5 +118,9 @@ UINT WINAPI MsiGetComponentStateA(MSIHANDLE,LPSTR,INSTALLSTATE*,INSTALLSTATE*);
|
|||
UINT WINAPI MsiGetComponentStateW(MSIHANDLE,LPWSTR,INSTALLSTATE*,INSTALLSTATE*);
|
||||
#define MsiGetComponentState WINELIB_NAME_AW(MsiGetComponentState)
|
||||
|
||||
MSICONDITION WINAPI MsiEvaluateConditionA(MSIHANDLE,LPCSTR);
|
||||
MSICONDITION WINAPI MsiEvaluateConditionW(MSIHANDLE,LPCWSTR);
|
||||
#define MsiEvaluateCondition WINELIB_NAME_AW(MsiEvaluateCondition)
|
||||
|
||||
|
||||
#endif /* __WINE_MSIQUERY_H */
|
||||
|
|
Loading…
Reference in a new issue