2018-04-16 03:52:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 James Hawkins
|
|
|
|
* Copyright (C) 2018 Zebediah Figura
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma makedep header
|
2018-04-26 03:54:40 +02:00
|
|
|
#pragma makedep client
|
|
|
|
#pragma makedep server
|
2018-04-16 03:52:10 +02:00
|
|
|
|
|
|
|
import "objidl.idl";
|
|
|
|
|
|
|
|
cpp_quote("#if 0")
|
|
|
|
typedef unsigned long MSIHANDLE;
|
|
|
|
typedef int INSTALLMESSAGE;
|
|
|
|
typedef int MSICONDITION;
|
|
|
|
typedef int MSIRUNMODE;
|
|
|
|
typedef int INSTALLSTATE;
|
2018-04-20 06:44:14 +02:00
|
|
|
typedef int MSICOLINFO;
|
2018-04-20 06:44:15 +02:00
|
|
|
typedef int MSIMODIFY;
|
2018-04-25 05:27:42 +02:00
|
|
|
typedef int MSICOSTTREE;
|
2018-04-16 03:52:10 +02:00
|
|
|
|
2018-04-18 02:11:29 +02:00
|
|
|
#define MSIFIELD_NULL 0
|
|
|
|
#define MSIFIELD_INT 1
|
|
|
|
#define MSIFIELD_WSTR 3
|
|
|
|
#define MSIFIELD_STREAM 4
|
2018-04-16 03:52:10 +02:00
|
|
|
cpp_quote("#endif")
|
|
|
|
cpp_quote("#include \"msiquery.h\"")
|
|
|
|
|
2018-04-18 02:11:29 +02:00
|
|
|
struct wire_field {
|
|
|
|
unsigned int type;
|
|
|
|
[switch_is(type)] union {
|
|
|
|
[case(MSIFIELD_NULL)] ;
|
|
|
|
[case(MSIFIELD_INT)] int iVal;
|
|
|
|
[case(MSIFIELD_WSTR), string] LPWSTR szwVal;
|
|
|
|
[case(MSIFIELD_STREAM)] IStream *stream;
|
|
|
|
} u;
|
|
|
|
int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wire_record {
|
|
|
|
unsigned int count;
|
|
|
|
[size_is(count+1)] struct wire_field fields[];
|
|
|
|
};
|
|
|
|
|
2018-04-16 03:52:10 +02:00
|
|
|
[
|
2018-04-26 03:54:40 +02:00
|
|
|
uuid(56D58B64-8780-4c22-A8BC-8B0B29E4A9F8),
|
|
|
|
implicit_handle(handle_t rpc_handle)
|
2018-04-16 03:52:10 +02:00
|
|
|
]
|
|
|
|
interface IWineMsiRemote
|
|
|
|
{
|
2018-04-20 06:44:13 +02:00
|
|
|
UINT remote_ViewClose( [in] MSIHANDLE view );
|
2018-04-19 01:40:05 +02:00
|
|
|
UINT remote_ViewExecute( [in] MSIHANDLE view, [in, unique] struct wire_record *record );
|
2018-04-19 01:40:06 +02:00
|
|
|
UINT remote_ViewFetch( [in] MSIHANDLE view, [out] struct wire_record **record );
|
2018-04-20 06:44:14 +02:00
|
|
|
UINT remote_ViewGetColumnInfo( [in] MSIHANDLE view, [in] MSICOLINFO info, [out] struct wire_record **record );
|
2018-04-20 06:44:15 +02:00
|
|
|
UINT remote_ViewModify( [in] MSIHANDLE view, [in] MSIMODIFY mode,
|
|
|
|
[in] struct wire_record *record, [out] struct wire_record **refreshed );
|
2018-04-19 01:40:05 +02:00
|
|
|
|
2018-04-19 01:40:03 +02:00
|
|
|
MSICONDITION remote_DatabaseIsTablePersistent( [in] MSIHANDLE db, [in] LPCWSTR table );
|
2018-04-20 06:44:17 +02:00
|
|
|
UINT remote_DatabaseGetPrimaryKeys( [in] MSIHANDLE db, [in, string] LPCWSTR table, [out] struct wire_record **keys );
|
2018-04-20 06:44:18 +02:00
|
|
|
UINT remote_DatabaseGetSummaryInformation( [in] MSIHANDLE db, [in] UINT updatecount, [out] MSIHANDLE *suminfo );
|
2018-04-19 01:40:04 +02:00
|
|
|
UINT remote_DatabaseOpenView( [in] MSIHANDLE db, [in, string] LPCWSTR query, [out] MSIHANDLE *view );
|
2018-04-16 03:52:10 +02:00
|
|
|
|
2018-04-19 01:40:02 +02:00
|
|
|
MSIHANDLE remote_GetActiveDatabase( [in] MSIHANDLE hinst );
|
2018-04-17 17:35:36 +02:00
|
|
|
UINT remote_GetProperty( [in] MSIHANDLE hinst, [in, string] LPCWSTR property, [out, string] LPWSTR *value, [out] DWORD *size );
|
2018-04-17 17:35:37 +02:00
|
|
|
UINT remote_SetProperty( [in] MSIHANDLE hinst, [in, string, unique] LPCWSTR property, [in, string, unique] LPCWSTR value );
|
2018-04-18 02:11:29 +02:00
|
|
|
int remote_ProcessMessage( [in] MSIHANDLE hinst, [in] INSTALLMESSAGE message, [in] struct wire_record *record );
|
2018-04-22 02:33:43 +02:00
|
|
|
UINT remote_DoAction( [in] MSIHANDLE hinst, [in, string] LPCWSTR action );
|
2018-04-22 02:33:44 +02:00
|
|
|
UINT remote_Sequence( [in] MSIHANDLE hinst, [in, string] LPCWSTR table, [in] int sequence );
|
2018-04-22 02:33:45 +02:00
|
|
|
UINT remote_GetTargetPath( [in] MSIHANDLE hinst, [in, string] LPCWSTR folder, [out, string] LPWSTR *value );
|
2018-04-22 02:33:46 +02:00
|
|
|
UINT remote_SetTargetPath( [in] MSIHANDLE hinst, [in, string] LPCWSTR folder, [in, string] LPCWSTR value );
|
2018-04-22 02:33:47 +02:00
|
|
|
UINT remote_GetSourcePath( [in] MSIHANDLE hinst, [in, string] LPCWSTR folder, [out, string] LPWSTR *value );
|
2018-04-24 06:18:13 +02:00
|
|
|
BOOL remote_GetMode( [in] MSIHANDLE hinst, [in] MSIRUNMODE mode );
|
2018-04-24 06:18:14 +02:00
|
|
|
UINT remote_SetMode( [in] MSIHANDLE hinst, [in] MSIRUNMODE mode, [in] BOOL state );
|
2018-04-24 06:18:15 +02:00
|
|
|
UINT remote_GetFeatureState( [in] MSIHANDLE hinst, [in, string] LPCWSTR feature, [out] INSTALLSTATE *installed, [out] INSTALLSTATE *action );
|
2018-04-24 06:18:16 +02:00
|
|
|
UINT remote_SetFeatureState( [in] MSIHANDLE hinst, [in, string] LPCWSTR feature, [in] INSTALLSTATE state );
|
2018-04-24 06:18:17 +02:00
|
|
|
UINT remote_GetComponentState( [in] MSIHANDLE hinst, [in, string] LPCWSTR component, [out] INSTALLSTATE *installed, [out] INSTALLSTATE *action );
|
2018-04-24 06:18:18 +02:00
|
|
|
UINT remote_SetComponentState( [in] MSIHANDLE hinst, [in, string] LPCWSTR component, [in] INSTALLSTATE state );
|
2018-04-25 05:27:37 +02:00
|
|
|
LANGID remote_GetLanguage( [in] MSIHANDLE hinst );
|
2018-04-25 05:27:38 +02:00
|
|
|
UINT remote_SetInstallLevel( [in] MSIHANDLE hinst, [in] int level );
|
2018-04-25 05:27:39 +02:00
|
|
|
UINT remote_FormatRecord( [in] MSIHANDLE hinst, [in] struct wire_record *record, [out, string] LPWSTR *value);
|
2018-04-25 05:27:40 +02:00
|
|
|
MSICONDITION remote_EvaluateCondition( [in] MSIHANDLE hinst, [in, string] LPCWSTR condition );
|
2018-04-25 05:27:42 +02:00
|
|
|
UINT remote_GetFeatureCost( [in] MSIHANDLE hinst, [in, string] LPCWSTR feature, [in] MSICOSTTREE cost_tree, [in] INSTALLSTATE state, [out] INT *cost );
|
2018-04-26 03:54:38 +02:00
|
|
|
UINT remote_EnumComponentCosts( [in] MSIHANDLE hinst, [in, string, unique] LPCWSTR component, [in] DWORD index, [in] INSTALLSTATE state,
|
|
|
|
[out, string, size_is(3)] LPWSTR drive, [out] INT *cost, [out] INT *temp );
|
2018-04-16 03:52:10 +02:00
|
|
|
|
2018-04-26 03:54:39 +02:00
|
|
|
UINT remote_GetActionInfo( [in] const GUID *guid, [out] int *type, [out, string] LPWSTR *dllname,
|
|
|
|
[out, string] LPSTR *function, [out] MSIHANDLE *hinst );
|
2018-04-16 03:52:10 +02:00
|
|
|
UINT remote_CloseHandle( [in] MSIHANDLE handle );
|
|
|
|
}
|