2003-08-13 03:27:48 +02:00
|
|
|
/*
|
2003-09-27 04:19:48 +02:00
|
|
|
* Copyright (C) 2002,2003 Mike McCormack
|
2003-08-13 03:27:48 +02:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-08-13 03:27:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_MSIQUERY_H
|
|
|
|
#define __WINE_MSIQUERY_H
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <msi.h>
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
typedef enum tagMSICONDITION
|
|
|
|
{
|
|
|
|
MSICONDITION_FALSE = 0,
|
|
|
|
MSICONDITION_TRUE = 1,
|
|
|
|
MSICONDITION_NONE = 2,
|
|
|
|
MSICONDITION_ERROR = 3,
|
|
|
|
} MSICONDITION;
|
|
|
|
|
|
|
|
#define MSI_NULL_INTEGER 0x80000000
|
|
|
|
|
|
|
|
typedef enum tagMSICOLINFO
|
|
|
|
{
|
|
|
|
MSICOLINFO_NAMES = 0,
|
|
|
|
MSICOLINFO_TYPES = 1
|
|
|
|
} MSICOLINFO;
|
|
|
|
|
2006-08-15 23:56:19 +02:00
|
|
|
typedef enum tagMSICOSTTREE
|
|
|
|
{
|
|
|
|
MSICOSTTREE_SELFONLY = 0,
|
|
|
|
MSICOSTTREE_CHILDREN = 1,
|
|
|
|
MSICOSTTREE_PARENTS = 2,
|
|
|
|
MSICOSTTREE_PRODUCT = 3,
|
|
|
|
} MSICOSTTREE;
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
typedef enum tagMSIMODIFY
|
|
|
|
{
|
2009-01-18 22:11:44 +01:00
|
|
|
MSIMODIFY_SEEK = -1,
|
2003-08-13 03:27:48 +02:00
|
|
|
MSIMODIFY_REFRESH = 0,
|
|
|
|
MSIMODIFY_INSERT = 1,
|
|
|
|
MSIMODIFY_UPDATE = 2,
|
|
|
|
MSIMODIFY_ASSIGN = 3,
|
|
|
|
MSIMODIFY_REPLACE = 4,
|
|
|
|
MSIMODIFY_MERGE = 5,
|
|
|
|
MSIMODIFY_DELETE = 6,
|
|
|
|
MSIMODIFY_INSERT_TEMPORARY = 7,
|
|
|
|
MSIMODIFY_VALIDATE = 8,
|
|
|
|
MSIMODIFY_VALIDATE_NEW = 9,
|
|
|
|
MSIMODIFY_VALIDATE_FIELD = 10,
|
|
|
|
MSIMODIFY_VALIDATE_DELETE = 11
|
|
|
|
} MSIMODIFY;
|
|
|
|
|
2008-05-30 10:02:42 +02:00
|
|
|
#ifndef WINE_NO_UNICODE_MACROS
|
2003-11-05 02:50:30 +01:00
|
|
|
#define MSIDBOPEN_READONLY (LPCTSTR)0
|
|
|
|
#define MSIDBOPEN_TRANSACT (LPCTSTR)1
|
|
|
|
#define MSIDBOPEN_DIRECT (LPCTSTR)2
|
|
|
|
#define MSIDBOPEN_CREATE (LPCTSTR)3
|
2004-12-16 15:29:25 +01:00
|
|
|
#define MSIDBOPEN_CREATEDIRECT (LPCTSTR)4
|
2005-10-30 20:21:51 +01:00
|
|
|
#else
|
|
|
|
#define MSIDBOPEN_READONLY (LPCWSTR)0
|
|
|
|
#define MSIDBOPEN_TRANSACT (LPCWSTR)1
|
|
|
|
#define MSIDBOPEN_DIRECT (LPCWSTR)2
|
|
|
|
#define MSIDBOPEN_CREATE (LPCWSTR)3
|
|
|
|
#define MSIDBOPEN_CREATEDIRECT (LPCWSTR)4
|
|
|
|
#endif
|
2003-11-05 02:50:30 +01:00
|
|
|
|
2008-07-08 07:05:31 +02:00
|
|
|
#define MSIDBOPEN_PATCHFILE 32 / sizeof(*MSIDBOPEN_READONLY)
|
|
|
|
|
2004-12-16 15:29:25 +01:00
|
|
|
typedef enum tagMSIRUNMODE
|
|
|
|
{
|
|
|
|
MSIRUNMODE_ADMIN = 0,
|
|
|
|
MSIRUNMODE_ADVERTISE = 1,
|
|
|
|
MSIRUNMODE_MAINTENANCE = 2,
|
|
|
|
MSIRUNMODE_ROLLBACKENABLED = 3,
|
|
|
|
MSIRUNMODE_LOGENABLED = 4,
|
|
|
|
MSIRUNMODE_OPERATIONS = 5,
|
|
|
|
MSIRUNMODE_REBOOTATEND = 6,
|
|
|
|
MSIRUNMODE_REBOOTNOW = 7,
|
|
|
|
MSIRUNMODE_CABINET = 8,
|
|
|
|
MSIRUNMODE_SOURCESHORTNAMES = 9,
|
|
|
|
MSIRUNMODE_TARGETSHORTNAMES = 10,
|
|
|
|
MSIRUNMODE_RESERVED11 = 11,
|
|
|
|
MSIRUNMODE_WINDOWS9X = 12,
|
|
|
|
MSIRUNMODE_ZAWENABLED = 13,
|
|
|
|
MSIRUNMODE_RESERVED14 = 14,
|
|
|
|
MSIRUNMODE_RESERVED15 = 15,
|
|
|
|
MSIRUNMODE_SCHEDULED = 16,
|
|
|
|
MSIRUNMODE_ROLLBACK = 17,
|
|
|
|
MSIRUNMODE_COMMIT = 18
|
|
|
|
} MSIRUNMODE;
|
2003-11-05 02:50:30 +01:00
|
|
|
|
2005-06-10 21:29:24 +02:00
|
|
|
typedef enum tagMSIDBERROR
|
|
|
|
{
|
|
|
|
MSIDBERROR_INVALIDARG = -3,
|
|
|
|
MSIDBERROR_MOREDATA = -2,
|
|
|
|
MSIDBERROR_FUNCTIONERROR = -1,
|
|
|
|
MSIDBERROR_NOERROR = 0,
|
|
|
|
MSIDBERROR_DUPLICATEKEY = 1,
|
|
|
|
MSIDBERROR_REQUIRED = 2,
|
|
|
|
MSIDBERROR_BADLINK = 3,
|
|
|
|
MSIDBERROR_OVERFLOW = 4,
|
|
|
|
MSIDBERROR_UNDERFLOW = 5,
|
|
|
|
MSIDBERROR_NOTINSET = 6,
|
|
|
|
MSIDBERROR_BADVERSION = 7,
|
|
|
|
MSIDBERROR_BADCASE = 8,
|
|
|
|
MSIDBERROR_BADGUID = 9,
|
|
|
|
MSIDBERROR_BADWILDCARD = 10,
|
|
|
|
MSIDBERROR_BADIDENTIFIER = 11,
|
|
|
|
MSIDBERROR_BADLANGUAGE = 12,
|
|
|
|
MSIDBERROR_BADFILENAME = 13,
|
|
|
|
MSIDBERROR_BADPATH = 14,
|
|
|
|
MSIDBERROR_BADCONDITION = 15,
|
|
|
|
MSIDBERROR_BADFORMATTED = 16,
|
|
|
|
MSIDBERROR_BADTEMPLATE = 17,
|
|
|
|
MSIDBERROR_BADDEFAULTDIR = 18,
|
|
|
|
MSIDBERROR_BADREGPATH = 19,
|
|
|
|
MSIDBERROR_BADCUSTOMSOURCE = 20,
|
|
|
|
MSIDBERROR_BADPROPERTY = 21,
|
|
|
|
MSIDBERROR_MISSINGDATA = 22,
|
|
|
|
MSIDBERROR_BADCATEGORY = 23,
|
|
|
|
MSIDBERROR_BADKEYTABLE = 24,
|
|
|
|
MSIDBERROR_BADMAXMINVALUES = 25,
|
|
|
|
MSIDBERROR_BADCABINET = 26,
|
|
|
|
MSIDBERROR_BADSHORTCUT= 27,
|
|
|
|
MSIDBERROR_STRINGOVERFLOW = 28,
|
|
|
|
MSIDBERROR_BADLOCALIZEATTRIB = 29
|
|
|
|
} MSIDBERROR;
|
|
|
|
|
2006-01-30 14:56:52 +01:00
|
|
|
typedef enum tagMSIDBSTATE
|
|
|
|
{
|
|
|
|
MSIDBSTATE_ERROR = -1,
|
|
|
|
MSIDBSTATE_READ = 0,
|
|
|
|
MSIDBSTATE_WRITE = 1
|
|
|
|
} MSIDBSTATE;
|
|
|
|
|
2007-09-27 18:50:21 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
/* view manipulation */
|
|
|
|
UINT WINAPI MsiViewFetch(MSIHANDLE,MSIHANDLE*);
|
|
|
|
UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);
|
|
|
|
UINT WINAPI MsiViewClose(MSIHANDLE);
|
|
|
|
UINT WINAPI MsiDatabaseOpenViewA(MSIHANDLE,LPCSTR,MSIHANDLE*);
|
|
|
|
UINT WINAPI MsiDatabaseOpenViewW(MSIHANDLE,LPCWSTR,MSIHANDLE*);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiDatabaseOpenView WINELIB_NAME_AW(MsiDatabaseOpenView)
|
2007-08-09 10:41:41 +02:00
|
|
|
MSIDBERROR WINAPI MsiViewGetErrorA(MSIHANDLE,LPSTR,LPDWORD);
|
|
|
|
MSIDBERROR WINAPI MsiViewGetErrorW(MSIHANDLE,LPWSTR,LPDWORD);
|
2005-06-10 21:52:13 +02:00
|
|
|
#define MsiViewGetError WINELIB_NAME_AW(MsiViewGetError)
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2006-01-30 14:56:52 +01:00
|
|
|
MSIDBSTATE WINAPI MsiGetDatabaseState(MSIHANDLE);
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
/* record manipulation */
|
2007-08-09 10:41:41 +02:00
|
|
|
MSIHANDLE WINAPI MsiCreateRecord(UINT);
|
2003-08-13 03:27:48 +02:00
|
|
|
UINT WINAPI MsiRecordClearData(MSIHANDLE);
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiRecordSetInteger(MSIHANDLE,UINT,int);
|
|
|
|
UINT WINAPI MsiRecordSetStringA(MSIHANDLE,UINT,LPCSTR);
|
|
|
|
UINT WINAPI MsiRecordSetStringW(MSIHANDLE,UINT,LPCWSTR);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiRecordSetString WINELIB_NAME_AW(MsiRecordSetString)
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiRecordGetStringA(MSIHANDLE,UINT,LPSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiRecordGetStringW(MSIHANDLE,UINT,LPWSTR,LPDWORD);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiRecordGetString WINELIB_NAME_AW(MsiRecordGetString)
|
2003-08-13 03:27:48 +02:00
|
|
|
UINT WINAPI MsiRecordGetFieldCount(MSIHANDLE);
|
2007-08-09 10:41:41 +02:00
|
|
|
int WINAPI MsiRecordGetInteger(MSIHANDLE,UINT);
|
|
|
|
UINT WINAPI MsiRecordDataSize(MSIHANDLE,UINT);
|
|
|
|
BOOL WINAPI MsiRecordIsNull(MSIHANDLE,UINT);
|
|
|
|
UINT WINAPI MsiFormatRecordA(MSIHANDLE,MSIHANDLE,LPSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiFormatRecordW(MSIHANDLE,MSIHANDLE,LPWSTR,LPDWORD);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiFormatRecord WINELIB_NAME_AW(MsiFormatRecord)
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiRecordSetStreamA(MSIHANDLE,UINT,LPCSTR);
|
|
|
|
UINT WINAPI MsiRecordSetStreamW(MSIHANDLE,UINT,LPCWSTR);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiRecordSetStream WINELIB_NAME_AW(MsiRecordSetStream)
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiRecordReadStream(MSIHANDLE,UINT,char*,LPDWORD);
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
UINT WINAPI MsiDatabaseGetPrimaryKeysA(MSIHANDLE,LPCSTR,MSIHANDLE*);
|
|
|
|
UINT WINAPI MsiDatabaseGetPrimaryKeysW(MSIHANDLE,LPCWSTR,MSIHANDLE*);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiDatabaseGetPrimaryKeys WINELIB_NAME_AW(MsiDatabaseGetPrimaryKeys)
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
/* installing */
|
|
|
|
UINT WINAPI MsiDoActionA(MSIHANDLE,LPCSTR );
|
|
|
|
UINT WINAPI MsiDoActionW(MSIHANDLE,LPCWSTR );
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiDoAction WINELIB_NAME_AW(MsiDoAction)
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
/* database transforms */
|
|
|
|
UINT WINAPI MsiDatabaseApplyTransformA(MSIHANDLE,LPCSTR,int);
|
|
|
|
UINT WINAPI MsiDatabaseApplyTransformW(MSIHANDLE,LPCWSTR,int);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiDatabaseApplyTransform WINELIB_NAME_AW(MsiDatabaseApplyTransform)
|
2003-08-13 03:27:48 +02:00
|
|
|
UINT WINAPI MsiDatabaseGenerateTransformA(MSIHANDLE,MSIHANDLE,LPCSTR,int,int);
|
|
|
|
UINT WINAPI MsiDatabaseGenerateTransformW(MSIHANDLE,MSIHANDLE,LPCWSTR,int,int);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiDatabaseGenerateTransform WINELIB_NAME_AW(MsiDatabaseGenerateTransform)
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
UINT WINAPI MsiDatabaseCommit(MSIHANDLE);
|
|
|
|
|
2003-09-27 04:19:48 +02:00
|
|
|
/* install state */
|
2006-08-04 23:27:42 +02:00
|
|
|
UINT WINAPI MsiGetFeatureStateA(MSIHANDLE,LPCSTR,INSTALLSTATE*,INSTALLSTATE*);
|
|
|
|
UINT WINAPI MsiGetFeatureStateW(MSIHANDLE,LPCWSTR,INSTALLSTATE*,INSTALLSTATE*);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiGetFeatureState WINELIB_NAME_AW(MsiGetFeatureState)
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiGetFeatureValidStatesA(MSIHANDLE,LPCSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiGetFeatureValidStatesW(MSIHANDLE,LPCWSTR,LPDWORD);
|
|
|
|
#define MsiGetFeatureValidStates WINELIB_NAME_AW(MsiGetFeatureValidStates)
|
2005-08-24 20:13:09 +02:00
|
|
|
UINT WINAPI MsiSetComponentStateA(MSIHANDLE,LPCSTR,INSTALLSTATE);
|
|
|
|
UINT WINAPI MsiSetComponentStateW(MSIHANDLE,LPCWSTR,INSTALLSTATE);
|
|
|
|
#define MsiSetComponentState WINELIB_NAME_AW(MsiSetComponentState)
|
2006-08-04 23:27:42 +02:00
|
|
|
UINT WINAPI MsiGetComponentStateA(MSIHANDLE,LPCSTR,INSTALLSTATE*,INSTALLSTATE*);
|
|
|
|
UINT WINAPI MsiGetComponentStateW(MSIHANDLE,LPCWSTR,INSTALLSTATE*,INSTALLSTATE*);
|
2003-09-27 04:19:48 +02:00
|
|
|
#define MsiGetComponentState WINELIB_NAME_AW(MsiGetComponentState)
|
|
|
|
|
2003-12-01 23:38:43 +01:00
|
|
|
MSICONDITION WINAPI MsiEvaluateConditionA(MSIHANDLE,LPCSTR);
|
|
|
|
MSICONDITION WINAPI MsiEvaluateConditionW(MSIHANDLE,LPCWSTR);
|
|
|
|
#define MsiEvaluateCondition WINELIB_NAME_AW(MsiEvaluateCondition)
|
|
|
|
|
2004-06-26 02:10:40 +02:00
|
|
|
/* property functions */
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiGetPropertyA(MSIHANDLE, LPCSTR, LPSTR, LPDWORD);
|
|
|
|
UINT WINAPI MsiGetPropertyW(MSIHANDLE, LPCWSTR, LPWSTR, LPDWORD);
|
2004-06-26 02:10:40 +02:00
|
|
|
#define MsiGetProperty WINELIB_NAME_AW(MsiGetProperty)
|
|
|
|
|
2005-01-06 20:44:46 +01:00
|
|
|
UINT WINAPI MsiSetPropertyA(MSIHANDLE, LPCSTR, LPCSTR);
|
|
|
|
UINT WINAPI MsiSetPropertyW(MSIHANDLE, LPCWSTR, LPCWSTR);
|
2004-06-26 02:10:40 +02:00
|
|
|
#define MsiSetProperty WINELIB_NAME_AW(MsiSetProperty)
|
|
|
|
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiGetTargetPathA(MSIHANDLE,LPCSTR,LPSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiGetTargetPathW(MSIHANDLE,LPCWSTR,LPWSTR,LPDWORD);
|
2004-06-26 02:10:40 +02:00
|
|
|
#define MsiGetTargetPath WINELIB_NAME_AW(MsiGetTargetPath)
|
|
|
|
|
|
|
|
UINT WINAPI MsiSetTargetPathA(MSIHANDLE, LPCSTR, LPCSTR);
|
|
|
|
UINT WINAPI MsiSetTargetPathW(MSIHANDLE, LPCWSTR, LPCWSTR);
|
|
|
|
#define MsiSetTargetPath WINELIB_NAME_AW(MsiSetTargetPath)
|
|
|
|
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiGetSourcePathA(MSIHANDLE,LPCSTR,LPSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiGetSourcePathW(MSIHANDLE,LPCWSTR,LPWSTR,LPDWORD);
|
2004-06-26 02:10:40 +02:00
|
|
|
#define MsiGetSourcePath WINELIB_NAME_AW(MsiGetSourcePath)
|
|
|
|
|
|
|
|
MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE);
|
|
|
|
|
2005-01-06 20:44:46 +01:00
|
|
|
UINT WINAPI MsiViewGetColumnInfo(MSIHANDLE, MSICOLINFO, MSIHANDLE*);
|
|
|
|
INT WINAPI MsiProcessMessage(MSIHANDLE, INSTALLMESSAGE, MSIHANDLE);
|
2004-06-26 02:10:40 +02:00
|
|
|
|
2005-01-06 20:44:46 +01:00
|
|
|
UINT WINAPI MsiSetFeatureStateA(MSIHANDLE, LPCSTR, INSTALLSTATE);
|
|
|
|
UINT WINAPI MsiSetFeatureStateW(MSIHANDLE, LPCWSTR, INSTALLSTATE);
|
2004-06-26 02:10:40 +02:00
|
|
|
#define MsiSetFeatureState WINELIB_NAME_AW(MsiSetFeatureState)
|
2003-09-27 04:19:48 +02:00
|
|
|
|
2005-01-20 20:56:16 +01:00
|
|
|
UINT WINAPI MsiPreviewDialogA(MSIHANDLE, LPCSTR);
|
|
|
|
UINT WINAPI MsiPreviewDialogW(MSIHANDLE, LPCWSTR);
|
|
|
|
#define MsiPreviewDialog WINELIB_NAME_AW(MsiPreviewDialog)
|
|
|
|
|
|
|
|
UINT WINAPI MsiPreviewBillboardA(MSIHANDLE, LPCSTR, LPCSTR);
|
|
|
|
UINT WINAPI MsiPreviewBillboardW(MSIHANDLE, LPCWSTR, LPCWSTR);
|
|
|
|
#define MsiPreviewBillboard WINELIB_NAME_AW(MsiPreviewBillboard)
|
|
|
|
|
2007-07-11 09:11:53 +02:00
|
|
|
UINT WINAPI MsiCreateTransformSummaryInfoA(MSIHANDLE, MSIHANDLE, LPCSTR, int, int);
|
|
|
|
UINT WINAPI MsiCreateTransformSummaryInfoW(MSIHANDLE, MSIHANDLE, LPCWSTR, int, int);
|
|
|
|
#define MsiCreateTransformSummaryInfo WINELIB_NAME_AW(MsiCreateTransformSummaryInfo)
|
|
|
|
|
2005-03-18 15:01:39 +01:00
|
|
|
UINT WINAPI MsiGetSummaryInformationA(MSIHANDLE, LPCSTR, UINT, MSIHANDLE *);
|
|
|
|
UINT WINAPI MsiGetSummaryInformationW(MSIHANDLE, LPCWSTR, UINT, MSIHANDLE *);
|
|
|
|
#define MsiGetSummaryInformation WINELIB_NAME_AW(MsiGetSummaryInformation)
|
|
|
|
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiSummaryInfoGetPropertyA(MSIHANDLE,UINT,PUINT,LPINT,FILETIME*,LPSTR,LPDWORD);
|
|
|
|
UINT WINAPI MsiSummaryInfoGetPropertyW(MSIHANDLE,UINT,PUINT,LPINT,FILETIME*,LPWSTR,LPDWORD);
|
2005-03-18 15:01:39 +01:00
|
|
|
#define MsiSummaryInfoGetProperty WINELIB_NAME_AW(MsiSummaryInfoGetProperty)
|
|
|
|
|
2005-05-30 13:12:24 +02:00
|
|
|
UINT WINAPI MsiSummaryInfoSetPropertyA(MSIHANDLE, UINT, UINT, INT, FILETIME*, LPCSTR);
|
|
|
|
UINT WINAPI MsiSummaryInfoSetPropertyW(MSIHANDLE, UINT, UINT, INT, FILETIME*, LPCWSTR);
|
2005-03-18 15:01:39 +01:00
|
|
|
#define MsiSummaryInfoSetProperty WINELIB_NAME_AW(MsiSummaryInfoSetProperty)
|
|
|
|
|
2005-05-30 13:12:24 +02:00
|
|
|
UINT WINAPI MsiDatabaseExportA(MSIHANDLE, LPCSTR, LPCSTR, LPCSTR);
|
|
|
|
UINT WINAPI MsiDatabaseExportW(MSIHANDLE, LPCWSTR, LPCWSTR, LPCWSTR);
|
|
|
|
#define MsiDatabaseExport WINELIB_NAME_AW(MsiDatabaseExport)
|
|
|
|
|
|
|
|
UINT WINAPI MsiDatabaseImportA(MSIHANDLE, LPCSTR, LPCSTR);
|
|
|
|
UINT WINAPI MsiDatabaseImportW(MSIHANDLE, LPCWSTR, LPCWSTR);
|
|
|
|
#define MsiDatabaseImport WINELIB_NAME_AW(MsiDatabaseImport)
|
|
|
|
|
|
|
|
UINT WINAPI MsiOpenDatabaseW(LPCWSTR, LPCWSTR, MSIHANDLE*);
|
|
|
|
UINT WINAPI MsiOpenDatabaseA(LPCSTR, LPCSTR, MSIHANDLE*);
|
|
|
|
#define MsiOpenDatabase WINELIB_NAME_AW(MsiOpenDatabase)
|
|
|
|
|
2006-09-08 11:01:54 +02:00
|
|
|
MSICONDITION WINAPI MsiDatabaseIsTablePersistentA(MSIHANDLE, LPCSTR);
|
|
|
|
MSICONDITION WINAPI MsiDatabaseIsTablePersistentW(MSIHANDLE, LPCWSTR);
|
2005-05-30 13:12:24 +02:00
|
|
|
#define MsiDatabaseIsTablePersistent WINELIB_NAME_AW(MsiDatabaseIsTablePersistent)
|
|
|
|
|
2005-09-20 13:37:30 +02:00
|
|
|
UINT WINAPI MsiSequenceA(MSIHANDLE, LPCSTR, INT);
|
|
|
|
UINT WINAPI MsiSequenceW(MSIHANDLE, LPCWSTR, INT);
|
|
|
|
#define MsiSequence WINELIB_NAME_AW(MsiSequence)
|
|
|
|
|
2005-03-18 15:01:39 +01:00
|
|
|
UINT WINAPI MsiSummaryInfoPersist(MSIHANDLE);
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiSummaryInfoGetPropertyCount(MSIHANDLE,PUINT);
|
2005-03-18 15:01:39 +01:00
|
|
|
|
2005-01-20 20:56:16 +01:00
|
|
|
UINT WINAPI MsiEnableUIPreview(MSIHANDLE, MSIHANDLE*);
|
2004-12-16 15:29:25 +01:00
|
|
|
BOOL WINAPI MsiGetMode(MSIHANDLE, MSIRUNMODE);
|
2005-10-30 20:05:13 +01:00
|
|
|
BOOL WINAPI MsiSetMode(MSIHANDLE, MSIRUNMODE, BOOL);
|
2004-12-16 15:29:25 +01:00
|
|
|
|
2005-05-30 13:12:24 +02:00
|
|
|
UINT WINAPI MsiViewModify(MSIHANDLE, MSIMODIFY, MSIHANDLE);
|
|
|
|
|
2007-08-09 10:41:41 +02:00
|
|
|
UINT WINAPI MsiGetFeatureCostA(MSIHANDLE, LPCSTR, MSICOSTTREE, INSTALLSTATE, LPINT);
|
|
|
|
UINT WINAPI MsiGetFeatureCostW(MSIHANDLE, LPCWSTR, MSICOSTTREE, INSTALLSTATE, LPINT);
|
2006-10-09 09:05:27 +02:00
|
|
|
#define MsiGetFeatureCost WINELIB_NAME_AW(MsiGetFeatureCost)
|
|
|
|
|
|
|
|
LANGID WINAPI MsiGetLanguage(MSIHANDLE);
|
|
|
|
|
|
|
|
UINT WINAPI MsiSetInstallLevel(MSIHANDLE, int);
|
|
|
|
|
2007-03-10 22:00:47 +01:00
|
|
|
MSIHANDLE WINAPI MsiGetLastErrorRecord(void);
|
2006-10-09 09:05:27 +02:00
|
|
|
|
2007-09-27 18:50:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
#endif /* __WINE_MSIQUERY_H */
|