mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
86 lines
2.8 KiB
C
86 lines
2.8 KiB
C
|
/*
|
||
|
* Copyright (C) 2002 Mike McCormack
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef __WINE_MSI_H
|
||
|
#define __WINE_MSI_H
|
||
|
|
||
|
typedef unsigned long MSIHANDLE;
|
||
|
typedef enum tagINSTALLSTATE
|
||
|
{
|
||
|
INSTALLSTATE_BADCONFIG = -6,
|
||
|
INSTALLSTATE_INCOMPLETE = -5,
|
||
|
INSTALLSTATE_SOURCEABSENT = -4,
|
||
|
INSTALLSTATE_MOREDATA = -3,
|
||
|
INSTALLSTATE_INVALIDARG = -2,
|
||
|
INSTALLSTATE_UNKNOWN = -1,
|
||
|
INSTALLSTATE_BROKEN = 0,
|
||
|
INSTALLSTATE_ADVERTISED = 1,
|
||
|
INSTALLSTATE_ABSENT = 2,
|
||
|
INSTALLSTATE_LOCAL = 3,
|
||
|
INSTALLSTATE_SOURCE = 4,
|
||
|
INSTALLSTATE_DEFAULT = 5
|
||
|
} INSTALLSTATE;
|
||
|
|
||
|
typedef enum tagINSTALLUILEVEL
|
||
|
{
|
||
|
INSTALLUILEVEL_NOCHANGE = 0,
|
||
|
INSTALLUILEVEL_DEFAULT = 1,
|
||
|
INSTALLUILEVEL_NONE = 2,
|
||
|
INSTALLUILEVEL_BASIC = 3,
|
||
|
INSTALLUILEVEL_REDUCED = 4,
|
||
|
INSTALLUILEVEL_FULL = 5
|
||
|
} INSTALLUILEVEL;
|
||
|
|
||
|
#define MSIDBOPEN_READONLY 0
|
||
|
#define MSIDBOPEN_TRANSACT 1
|
||
|
#define MSIDBOPEN_DIRECT 2
|
||
|
#define MSIDBOPEN_CREATE 3
|
||
|
|
||
|
|
||
|
UINT WINAPI MsiInstallProductA(LPCSTR, LPCSTR);
|
||
|
UINT WINAPI MsiInstallProductW(LPCWSTR, LPCWSTR);
|
||
|
|
||
|
UINT WINAPI MsiEnumProductsA(DWORD index, LPSTR lpguid);
|
||
|
UINT WINAPI MsiEnumProductsW(DWORD index, LPWSTR lpguid);
|
||
|
|
||
|
UINT WINAPI MsiEnumFeaturesA(LPCSTR, DWORD, LPSTR, LPSTR);
|
||
|
UINT WINAPI MsiEnumFeaturesW(LPCWSTR, DWORD, LPWSTR, LPWSTR);
|
||
|
|
||
|
UINT WINAPI MsiEnumComponentsA(DWORD, LPSTR);
|
||
|
UINT WINAPI MsiEnumComponentsW(DWORD, LPWSTR);
|
||
|
|
||
|
UINT WINAPI MsiEnumClientsA(LPCSTR, DWORD, LPSTR);
|
||
|
UINT WINAPI MsiEnumClientsW(LPCWSTR, DWORD, LPWSTR);
|
||
|
|
||
|
UINT WINAPI MsiOpenDatabaseA(LPCSTR, LPCSTR, MSIHANDLE *);
|
||
|
UINT WINAPI MsiOpenDatabaseW(LPCWSTR, LPCWSTR, MSIHANDLE *);
|
||
|
|
||
|
UINT WINAPI MsiGetSummaryInformationA(MSIHANDLE, LPCSTR, UINT, MSIHANDLE *);
|
||
|
UINT WINAPI MsiGetSummaryInformationW(MSIHANDLE, LPCWSTR, UINT, MSIHANDLE *);
|
||
|
|
||
|
UINT WINAPI MsiSummaryInfoGetPropertyA(MSIHANDLE,UINT,UINT*,INT*,FILETIME*,LPSTR,DWORD*);
|
||
|
UINT WINAPI MsiSummaryInfoGetPropertyW(MSIHANDLE,UINT,UINT*,INT*,FILETIME*,LPWSTR,DWORD*);
|
||
|
|
||
|
UINT WINAPI MsiCloseHandle(MSIHANDLE);
|
||
|
UINT WINAPI MsiCloseAllHandles();
|
||
|
|
||
|
UINT WINAPI MsiProvideComponentFromDescriptorA(LPCSTR,LPSTR,DWORD*,DWORD*);
|
||
|
UINT WINAPI MsiProvideComponentFromDescriptorW(LPCWSTR,LPWSTR,DWORD*,DWORD*);
|
||
|
|
||
|
#endif /* __WINE_MSI_H */
|