mirror of
https://github.com/reactos/reactos.git
synced 2025-04-15 01:47:30 +00:00
Forgot these files, sorry...
svn path=/trunk/; revision=36385
This commit is contained in:
parent
6b981d5bb1
commit
033cea3fa6
3 changed files with 11 additions and 13 deletions
|
@ -421,10 +421,6 @@ UINT WINAPI MsiOpenProductA(LPCSTR, MSIHANDLE*);
|
|||
UINT WINAPI MsiOpenProductW(LPCWSTR, MSIHANDLE*);
|
||||
#define MsiOpenProduct WINELIB_NAME_AW(MsiOpenProduct)
|
||||
|
||||
UINT WINAPI MsiProvideComponentFromDescriptorA(LPCSTR,LPSTR,DWORD*,DWORD*);
|
||||
UINT WINAPI MsiProvideComponentFromDescriptorW(LPCWSTR,LPWSTR,DWORD*,DWORD*);
|
||||
#define MsiProvideComponentFromDescriptor WINELIB_NAME_AW(MsiProvideComponentFromDescriptor)
|
||||
|
||||
UINT WINAPI MsiGetProductPropertyA(MSIHANDLE,LPCSTR,LPSTR,LPDWORD);
|
||||
UINT WINAPI MsiGetProductPropertyW(MSIHANDLE,LPCWSTR,LPWSTR,LPDWORD);
|
||||
#define MsiGetProductProperty WINELIB_NAME_AW(MsiGetProductProperty)
|
||||
|
|
|
@ -19,10 +19,6 @@
|
|||
#ifndef __WINE_MSIDEFS_H
|
||||
#define __WINE_MSIDEFS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
enum msidbUpgradeAttributes {
|
||||
msidbUpgradeAttributesMigrateFeatures = 0x0000001,
|
||||
msidbUpgradeAttributesOnlyDetect = 0x00000002,
|
||||
|
@ -211,6 +207,14 @@ enum msidbAssemblyAttributes
|
|||
msidbAssemblyAttributesWin32 = 0x00000001,
|
||||
};
|
||||
|
||||
enum msidbSumInfoSourceType
|
||||
{
|
||||
msidbSumInfoSourceTypeSFN = 0x00000001,
|
||||
msidbSumInfoSourceTypeCompressed = 0x00000002,
|
||||
msidbSumInfoSourceTypeAdminImage = 0x00000004,
|
||||
msidbSumInfoSourceTypeLUAPackage = 0x00000008,
|
||||
};
|
||||
|
||||
/*
|
||||
* Windows SDK braindamage alert
|
||||
*
|
||||
|
@ -254,8 +258,4 @@ enum msidbAssemblyAttributes
|
|||
#define PID_MSISOURCE PID_WORDCOUNT
|
||||
#define PID_MSIRESTRICT PID_CHARCOUNT
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_MSIDEFS_H */
|
||||
|
|
|
@ -61,7 +61,7 @@ typedef enum tagMSIMODIFY
|
|||
MSIMODIFY_VALIDATE_DELETE = 11
|
||||
} MSIMODIFY;
|
||||
|
||||
#ifndef __WINESRC__
|
||||
#ifndef WINE_NO_UNICODE_MACROS
|
||||
#define MSIDBOPEN_READONLY (LPCTSTR)0
|
||||
#define MSIDBOPEN_TRANSACT (LPCTSTR)1
|
||||
#define MSIDBOPEN_DIRECT (LPCTSTR)2
|
||||
|
@ -75,6 +75,8 @@ typedef enum tagMSIMODIFY
|
|||
#define MSIDBOPEN_CREATEDIRECT (LPCWSTR)4
|
||||
#endif
|
||||
|
||||
#define MSIDBOPEN_PATCHFILE 32 / sizeof(*MSIDBOPEN_READONLY)
|
||||
|
||||
typedef enum tagMSIRUNMODE
|
||||
{
|
||||
MSIRUNMODE_ADMIN = 0,
|
||||
|
|
Loading…
Reference in a new issue