msi: Make MsiViewGetColumnInfo() RPC-compatible.
[wine.git] / dlls / msi / winemsi.idl
blob628091b9b4cd3d1c0977d4f110a310de549b0945
1 /*
2 * Copyright (C) 2007 James Hawkins
3 * Copyright (C) 2018 Zebediah Figura
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #pragma makedep header
22 import "objidl.idl";
24 cpp_quote("#if 0")
25 typedef unsigned long MSIHANDLE;
26 typedef int INSTALLMESSAGE;
27 typedef int MSICONDITION;
28 typedef int MSIRUNMODE;
29 typedef int INSTALLSTATE;
30 typedef int MSICOLINFO;
32 #define MSIFIELD_NULL 0
33 #define MSIFIELD_INT 1
34 #define MSIFIELD_WSTR 3
35 #define MSIFIELD_STREAM 4
36 cpp_quote("#endif")
37 cpp_quote("#include \"msiquery.h\"")
39 struct wire_field {
40 unsigned int type;
41 [switch_is(type)] union {
42 [case(MSIFIELD_NULL)] ;
43 [case(MSIFIELD_INT)] int iVal;
44 [case(MSIFIELD_WSTR), string] LPWSTR szwVal;
45 [case(MSIFIELD_STREAM)] IStream *stream;
46 } u;
47 int len;
50 struct wire_record {
51 unsigned int count;
52 [size_is(count+1)] struct wire_field fields[];
56 uuid(56D58B64-8780-4c22-A8BC-8B0B29E4A9F8)
58 interface IWineMsiRemote
60 UINT remote_ViewClose( [in] MSIHANDLE view );
61 UINT remote_ViewExecute( [in] MSIHANDLE view, [in, unique] struct wire_record *record );
62 UINT remote_ViewFetch( [in] MSIHANDLE view, [out] struct wire_record **record );
63 UINT remote_ViewGetColumnInfo( [in] MSIHANDLE view, [in] MSICOLINFO info, [out] struct wire_record **record );
65 MSICONDITION remote_DatabaseIsTablePersistent( [in] MSIHANDLE db, [in] LPCWSTR table );
66 HRESULT remote_DatabaseGetPrimaryKeys( [in] MSIHANDLE db, [in] LPCWSTR table, [out] MSIHANDLE *keys );
67 HRESULT remote_DatabaseGetSummaryInformation( [in] MSIHANDLE db, [in] UINT updatecount, [out] MSIHANDLE *suminfo );
68 UINT remote_DatabaseOpenView( [in] MSIHANDLE db, [in, string] LPCWSTR query, [out] MSIHANDLE *view );
70 MSIHANDLE remote_GetActiveDatabase( [in] MSIHANDLE hinst );
71 UINT remote_GetProperty( [in] MSIHANDLE hinst, [in, string] LPCWSTR property, [out, string] LPWSTR *value, [out] DWORD *size );
72 UINT remote_SetProperty( [in] MSIHANDLE hinst, [in, string, unique] LPCWSTR property, [in, string, unique] LPCWSTR value );
73 int remote_ProcessMessage( [in] MSIHANDLE hinst, [in] INSTALLMESSAGE message, [in] struct wire_record *record );
74 HRESULT remote_DoAction( [in] MSIHANDLE hinst, [in] BSTR action );
75 HRESULT remote_Sequence( [in] MSIHANDLE hinst, [in] BSTR table, [in] int sequence );
76 HRESULT remote_GetTargetPath( [in] MSIHANDLE hinst, [in] BSTR folder, [out, size_is(*size)] BSTR value, [in, out] DWORD *size );
77 HRESULT remote_SetTargetPath( [in] MSIHANDLE hinst, [in] BSTR folder, [in] BSTR value );
78 HRESULT remote_GetSourcePath( [in] MSIHANDLE hinst, [in] BSTR folder, [out, size_is(*size)] BSTR value, [in, out] DWORD *size );
79 HRESULT remote_GetMode( [in] MSIHANDLE hinst, [in] MSIRUNMODE mode, [out] BOOL *ret );
80 HRESULT remote_SetMode( [in] MSIHANDLE hinst, [in] MSIRUNMODE mode, [in] BOOL state );
81 HRESULT remote_GetFeatureState( [in] MSIHANDLE hinst, [in] BSTR feature, [out] INSTALLSTATE *installed, [out] INSTALLSTATE *action );
82 HRESULT remote_SetFeatureState( [in] MSIHANDLE hinst, [in] BSTR feature, [in] INSTALLSTATE state );
83 HRESULT remote_GetComponentState( [in] MSIHANDLE hinst, [in] BSTR component, [out] INSTALLSTATE *installed, [out] INSTALLSTATE *action );
84 HRESULT remote_SetComponentState( [in] MSIHANDLE hinst, [in] BSTR component, [in] INSTALLSTATE state );
85 HRESULT remote_GetLanguage( [in] MSIHANDLE hinst, [out] LANGID *language );
86 HRESULT remote_SetInstallLevel( [in] MSIHANDLE hinst, [in] int level );
87 HRESULT remote_FormatRecord( [in] MSIHANDLE hinst, [in] MSIHANDLE record, [out] BSTR *value );
88 HRESULT remote_EvaluateCondition( [in] MSIHANDLE hinst, [in] BSTR condition );
89 HRESULT remote_GetFeatureCost( [in] MSIHANDLE hinst, [in] BSTR feature, [in] INT cost_tree, [in] INSTALLSTATE state, [out] INT *cost );
90 HRESULT remote_EnumComponentCosts( [in] MSIHANDLE hinst, [in] BSTR component, [in] DWORD index, [in] INSTALLSTATE state,
91 [out, size_is(*buflen)] BSTR drive, [in, out] DWORD *buflen, [out] INT *cost, [out] INT *temp );
93 HRESULT remote_GetActionInfo( [in] LPCGUID guid, [out] INT *type, [out] BSTR *dllname,
94 [out] BSTR *function, [out] MSIHANDLE *package );
95 UINT remote_CloseHandle( [in] MSIHANDLE handle );