For ShellExecuteExA we need to copy out the hProcess value from the W
[wine] / dlls / msi / msipriv.h
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2002-2005 Mike McCormack for CodeWeavers
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef __WINE_MSI_PRIVATE__
22 #define __WINE_MSI_PRIVATE__
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "msi.h"
29 #include "msiquery.h"
30 #include "objbase.h"
31 #include "objidl.h"
32 #include "wine/unicode.h"
33
34 #define MSI_DATASIZEMASK 0x00ff
35 #define MSITYPE_VALID    0x0100
36 #define MSITYPE_STRING   0x0800
37 #define MSITYPE_NULLABLE 0x1000
38 #define MSITYPE_KEY      0x2000
39
40 #define MSITYPE_BINARY 0x8900
41
42 struct tagMSITABLE;
43 typedef struct tagMSITABLE MSITABLE;
44
45 struct string_table;
46 typedef struct string_table string_table;
47
48 struct tagMSIOBJECTHDR;
49 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
50
51 typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
52
53 struct tagMSIOBJECTHDR
54 {
55     UINT magic;
56     UINT type;
57     DWORD refcount;
58     msihandledestructor destructor;
59     struct tagMSIOBJECTHDR *next;
60     struct tagMSIOBJECTHDR *prev;
61 };
62
63 typedef struct tagMSIDATABASE
64 {
65     MSIOBJECTHDR hdr;
66     IStorage *storage;
67     string_table *strings;
68     LPWSTR mode;
69     MSITABLE *first_table, *last_table;
70 } MSIDATABASE;
71
72 typedef struct tagMSIVIEW MSIVIEW;
73
74 typedef struct tagMSIQUERY
75 {
76     MSIOBJECTHDR hdr;
77     MSIVIEW *view;
78     UINT row;
79     MSIDATABASE *db;
80 } MSIQUERY;
81
82 /* maybe we can use a Variant instead of doing it ourselves? */
83 typedef struct tagMSIFIELD
84 {
85     UINT type;
86     union
87     {
88         INT iVal;
89         LPWSTR szwVal;
90         IStream *stream;
91     } u;
92 } MSIFIELD;
93
94 typedef struct tagMSIRECORD
95 {
96     MSIOBJECTHDR hdr;
97     UINT count;       /* as passed to MsiCreateRecord */
98     MSIFIELD fields[1]; /* nb. array size is count+1 */
99 } MSIRECORD;
100
101 typedef struct tagMSIVIEWOPS
102 {
103     /*
104      * fetch_int - reads one integer from {row,col} in the table
105      *
106      *  This function should be called after the execute method.
107      *  Data returned by the function should not change until 
108      *   close or delete is called.
109      *  To get a string value, query the database's string table with
110      *   the integer value returned from this function.
111      */
112     UINT (*fetch_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT *val );
113
114     /*
115      * fetch_int - reads one integer from {row,col} in the table
116      *
117      *  This function is similar to fetch_int, except fetches a
118      *    stream instead of an integer.
119      */
120     UINT (*fetch_stream)( struct tagMSIVIEW *, UINT row, UINT col, IStream **stm );
121
122     /*
123      * get_int - sets one integer at {row,col} in the table
124      *
125      *  Similar semantics to fetch_int
126      */
127     UINT (*set_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT val );
128
129     /*
130      * Inserts a new, blank row into the database
131      *  *row receives the number of the new row
132      */
133     UINT (*insert_row)( struct tagMSIVIEW *, UINT *row );
134
135     /*
136      * execute - loads the underlying data into memory so it can be read
137      */
138     UINT (*execute)( struct tagMSIVIEW *, MSIRECORD * );
139
140     /*
141      * close - clears the data read by execute from memory
142      */
143     UINT (*close)( struct tagMSIVIEW * );
144
145     /*
146      * get_dimensions - returns the number of rows or columns in a table.
147      *
148      *  The number of rows can only be queried after the execute method
149      *   is called. The number of columns can be queried at any time.
150      */
151     UINT (*get_dimensions)( struct tagMSIVIEW *, UINT *rows, UINT *cols );
152
153     /*
154      * get_column_info - returns the name and type of a specific column
155      *
156      *  The name is HeapAlloc'ed by this function and should be freed by
157      *   the caller.
158      *  The column information can be queried at any time.
159      */
160     UINT (*get_column_info)( struct tagMSIVIEW *, UINT n, LPWSTR *name, UINT *type );
161
162     /*
163      * modify - not yet implemented properly
164      */
165     UINT (*modify)( struct tagMSIVIEW *, MSIMODIFY, MSIRECORD * );
166
167     /*
168      * delete - destroys the structure completely
169      */
170     UINT (*delete)( struct tagMSIVIEW * );
171
172 } MSIVIEWOPS;
173
174 typedef struct tagMSISUMMARYINFO
175 {
176     MSIOBJECTHDR hdr;
177     IPropertyStorage *propstg;
178 } MSISUMMARYINFO;
179
180 struct tagMSIVIEW
181 {
182     MSIOBJECTHDR hdr;
183     MSIVIEWOPS   *ops;
184 };
185
186 struct msi_dialog_tag;
187 typedef struct msi_dialog_tag msi_dialog;
188
189 typedef struct tagMSIPACKAGE
190 {
191     MSIOBJECTHDR hdr;
192     MSIDATABASE *db;
193     struct tagMSIFEATURE *features;
194     UINT loaded_features;
195     struct tagMSIFOLDER  *folders;
196     UINT loaded_folders;
197     struct tagMSICOMPONENT *components;
198     UINT loaded_components;
199     struct tagMSIFILE *files;
200     UINT loaded_files;
201     LPWSTR ActionFormat;
202     LPWSTR LastAction;
203
204     LPWSTR *DeferredAction;
205     UINT DeferredActionCount;
206
207     LPWSTR *CommitAction;
208     UINT CommitActionCount;
209
210     struct tagMSIRUNNINGACTION *RunningAction;
211     UINT RunningActionCount;
212
213     LPWSTR PackagePath;
214
215     UINT CurrentInstallState;
216     msi_dialog *dialog;
217     LPWSTR next_dialog;
218
219     BOOL ExecuteSequenceRun;
220 } MSIPACKAGE;
221
222 typedef struct tagMSIPREVIEW
223 {
224     MSIOBJECTHDR hdr;
225     MSIPACKAGE *package;
226     msi_dialog *dialog;
227 } MSIPREVIEW;
228
229 #define MSIHANDLETYPE_ANY 0
230 #define MSIHANDLETYPE_DATABASE 1
231 #define MSIHANDLETYPE_SUMMARYINFO 2
232 #define MSIHANDLETYPE_VIEW 3
233 #define MSIHANDLETYPE_RECORD 4
234 #define MSIHANDLETYPE_PACKAGE 5
235 #define MSIHANDLETYPE_PREVIEW 6
236
237 #define MSI_MAJORVERSION 2
238 #define MSI_MINORVERSION 0
239 #define MSI_BUILDNUMBER 2600
240
241 #define GUID_SIZE 39
242
243 #define MSIHANDLE_MAGIC 0x4d434923
244 #define MSIMAXHANDLES 0xf0
245
246 #define MSISUMINFO_OFFSET 0x30LL
247
248 DEFINE_GUID(CLSID_IMsiServer,   0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
249 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
250 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
251 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
252
253 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
254
255
256 /* handle functions */
257 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
258 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
259 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
260 extern void msiobj_addref(MSIOBJECTHDR *);
261 extern int msiobj_release(MSIOBJECTHDR *);
262 extern void msiobj_lock(MSIOBJECTHDR *);
263 extern void msiobj_unlock(MSIOBJECTHDR *);
264 extern MSIHANDLE msiobj_findhandle( MSIOBJECTHDR *hdr );
265
266 /* add this table to the list of cached tables in the database */
267 extern void add_table(MSIDATABASE *db, MSITABLE *table);
268 extern void remove_table( MSIDATABASE *db, MSITABLE *table );
269 extern void free_table( MSIDATABASE *db, MSITABLE *table );
270 extern void free_cached_tables( MSIDATABASE *db );
271 extern UINT find_cached_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
272 extern UINT get_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
273 extern UINT load_string_table( MSIDATABASE *db );
274 extern UINT MSI_CommitTables( MSIDATABASE *db );
275 extern HRESULT init_string_table( IStorage *stg );
276
277
278 /* string table functions */
279 extern BOOL msi_addstring( string_table *st, int string_no, const CHAR *data, int len, UINT refcount );
280 extern BOOL msi_addstringW( string_table *st, int string_no, const WCHAR *data, int len, UINT refcount );
281 extern UINT msi_id2stringW( string_table *st, UINT string_no, LPWSTR buffer, UINT *sz );
282 extern UINT msi_id2stringA( string_table *st, UINT string_no, LPSTR buffer, UINT *sz );
283
284 extern LPWSTR MSI_makestring( MSIDATABASE *db, UINT stringid);
285 extern UINT msi_string2idW( string_table *st, LPCWSTR buffer, UINT *id );
286 extern UINT msi_string2idA( string_table *st, LPCSTR str, UINT *id );
287 extern string_table *msi_init_stringtable( int entries, UINT codepage );
288 extern VOID msi_destroy_stringtable( string_table *st );
289 extern UINT msi_string_count( string_table *st );
290 extern UINT msi_id_refcount( string_table *st, UINT i );
291 extern UINT msi_string_totalsize( string_table *st, UINT *last );
292 extern UINT msi_strcmp( string_table *st, UINT lval, UINT rval, UINT *res );
293 extern const WCHAR *msi_string_lookup_id( string_table *st, UINT id );
294 extern UINT msi_string_get_codepage( string_table *st );
295
296
297 extern UINT VIEW_find_column( MSIVIEW *view, LPWSTR name, UINT *n );
298
299 extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
300
301 extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
302                               USHORT **pdata, UINT *psz );
303
304 /* action internals */
305 extern UINT ACTION_DoTopLevelINSTALL( MSIPACKAGE *, LPCWSTR, LPCWSTR );
306 extern void ACTION_free_package_structures( MSIPACKAGE* );
307 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
308
309 /* record internals */
310 extern UINT MSI_RecordSetIStream( MSIRECORD *, unsigned int, IStream *);
311 extern const WCHAR *MSI_RecordGetString( MSIRECORD *, unsigned int );
312 extern MSIRECORD *MSI_CreateRecord( unsigned int );
313 extern UINT MSI_RecordSetInteger( MSIRECORD *, unsigned int, int );
314 extern UINT MSI_RecordSetStringW( MSIRECORD *, unsigned int, LPCWSTR );
315 extern BOOL MSI_RecordIsNull( MSIRECORD *, unsigned int );
316 extern UINT MSI_RecordGetStringW( MSIRECORD * , unsigned int, LPWSTR, DWORD *);
317 extern UINT MSI_RecordGetStringA( MSIRECORD *, unsigned int, LPSTR, DWORD *);
318 extern int MSI_RecordGetInteger( MSIRECORD *, unsigned int );
319 extern UINT MSI_RecordReadStream( MSIRECORD *, unsigned int, char *, DWORD *);
320 extern unsigned int MSI_RecordGetFieldCount( MSIRECORD *rec );
321
322 /* stream internals */
323 extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
324 extern UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm );
325 extern void enum_stream_names( IStorage *stg );
326
327 /* database internals */
328 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
329 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
330 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
331 typedef UINT (*record_func)( MSIRECORD *rec, LPVOID param );
332 extern UINT MSI_IterateRecords( MSIQUERY *, DWORD *, record_func, LPVOID );
333
334 /* view internals */
335 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
336 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
337 extern UINT MSI_ViewClose( MSIQUERY* );
338
339 /* package internals */
340 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * );
341 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE ** );
342 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
343 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
344 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
345 extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, DWORD * );
346 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
347 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
348 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
349 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
350
351 /* for deformating */
352 extern UINT MSI_FormatRecordW(MSIPACKAGE* package, MSIRECORD* record, 
353                               LPWSTR buffer, DWORD *size);
354     
355 /* registry data encoding/decoding functions */
356 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
357 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
358 extern BOOL encode_base85_guid(GUID *,LPWSTR);
359 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
360 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
361 extern UINT MSIREG_OpenUserProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
362 extern UINT MSIREG_OpenFeatures(HKEY* key);
363 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
364 extern UINT MSIREG_OpenComponents(HKEY* key);
365 extern UINT MSIREG_OpenComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
366 extern UINT MSIREG_OpenProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
367 extern UINT MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
368 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
369
370 /* msi dialog interface */
371 typedef VOID (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
372 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog_event_handler );
373 extern UINT msi_dialog_run_message_loop( msi_dialog* );
374 extern void msi_dialog_end_dialog( msi_dialog* );
375 extern void msi_dialog_check_messages( msi_dialog*, HANDLE );
376 extern void msi_dialog_do_preview( msi_dialog* );
377 extern void msi_dialog_destroy( msi_dialog* );
378 extern void msi_dialog_register_class( void );
379 extern void msi_dialog_unregister_class( void );
380
381 /* UI globals */
382 extern INSTALLUILEVEL gUILevel;
383 extern HWND gUIhwnd;
384 extern INSTALLUI_HANDLERA gUIHandlerA;
385 extern INSTALLUI_HANDLERW gUIHandlerW;
386 extern DWORD gUIFilter;
387 extern LPVOID gUIContext;
388 extern WCHAR gszLogFile[MAX_PATH];
389
390 inline static char *strdupWtoA( LPCWSTR str )
391 {
392     LPSTR ret = NULL;
393     if (str)
394     {
395         DWORD len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL
396 );
397         if ((ret = HeapAlloc( GetProcessHeap(), 0, len )))
398             WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
399     }
400     return ret;
401 }
402
403 inline static LPWSTR strdupAtoW( LPCSTR str )
404 {
405     LPWSTR ret = NULL;
406     if (str)
407     {
408         DWORD len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
409         if ((ret = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
410             MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
411     }
412     return ret;
413 }
414
415 inline static LPWSTR strdupW( LPCWSTR src )
416 {
417     LPWSTR dest;
418     if (!src) return NULL;
419     dest = HeapAlloc(GetProcessHeap(), 0, (strlenW(src)+1)*sizeof(WCHAR));
420     strcpyW(dest, src);
421     return dest;
422 }
423
424 #endif /* __WINE_MSI_PRIVATE__ */