rpcrt4: Move forcing of fMustAlloc to NULL to the callers of EmbeddedPointerUnmarshall.
[wine] / dlls / msi / msipriv.h
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2002-2005 Mike McCormack for CodeWeavers
5  * Copyright 2005 Aric Stewart for CodeWeavers
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #ifndef __WINE_MSI_PRIVATE__
23 #define __WINE_MSI_PRIVATE__
24
25 #include <stdarg.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "msi.h"
30 #include "msiquery.h"
31 #include "objbase.h"
32 #include "objidl.h"
33 #include "winnls.h"
34 #include "wine/list.h"
35
36 #define MSI_DATASIZEMASK 0x00ff
37 #define MSITYPE_VALID    0x0100
38 #define MSITYPE_LOCALIZABLE 0x200
39 #define MSITYPE_STRING   0x0800
40 #define MSITYPE_NULLABLE 0x1000
41 #define MSITYPE_KEY      0x2000
42 #define MSITYPE_TEMPORARY 0x4000
43
44 /* Word Count masks */
45 #define MSIWORDCOUNT_SHORTFILENAMES     0x0001
46 #define MSIWORDCOUNT_COMPRESSED         0x0002
47 #define MSIWORDCOUNT_ADMINISTRATIVE     0x0004
48 #define MSIWORDCOUNT_PRIVILEGES         0x0008
49
50 /* Install UI level mask for AND operation to exclude flags */
51 #define INSTALLUILEVEL_MASK             0x0007
52
53 #define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
54
55 struct tagMSITABLE;
56 typedef struct tagMSITABLE MSITABLE;
57
58 struct string_table;
59 typedef struct string_table string_table;
60
61 struct tagMSIOBJECTHDR;
62 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
63
64 typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
65
66 struct tagMSIOBJECTHDR
67 {
68     UINT magic;
69     UINT type;
70     LONG refcount;
71     msihandledestructor destructor;
72 };
73
74 typedef struct tagMSIDATABASE
75 {
76     MSIOBJECTHDR hdr;
77     IStorage *storage;
78     string_table *strings;
79     UINT bytes_per_strref;
80     LPWSTR path;
81     LPWSTR deletefile;
82     LPCWSTR mode;
83     struct list tables;
84     struct list transforms;
85 } MSIDATABASE;
86
87 typedef struct tagMSIVIEW MSIVIEW;
88
89 typedef struct tagMSIQUERY
90 {
91     MSIOBJECTHDR hdr;
92     MSIVIEW *view;
93     UINT row;
94     MSIDATABASE *db;
95     struct list mem;
96 } MSIQUERY;
97
98 /* maybe we can use a Variant instead of doing it ourselves? */
99 typedef struct tagMSIFIELD
100 {
101     UINT type;
102     union
103     {
104         INT iVal;
105         LPWSTR szwVal;
106         IStream *stream;
107     } u;
108 } MSIFIELD;
109
110 typedef struct tagMSIRECORD
111 {
112     MSIOBJECTHDR hdr;
113     UINT count;       /* as passed to MsiCreateRecord */
114     MSIFIELD fields[1]; /* nb. array size is count+1 */
115 } MSIRECORD;
116
117 typedef struct tagMSISOURCELISTINFO
118 {
119     struct list entry;
120     DWORD context;
121     DWORD options;
122     LPCWSTR property;
123     LPWSTR value;
124 } MSISOURCELISTINFO;
125
126 typedef struct tagMSIMEDIADISK
127 {
128     struct list entry;
129     DWORD context;
130     DWORD options;
131     DWORD disk_id;
132     LPWSTR volume_label;
133     LPWSTR disk_prompt;
134 } MSIMEDIADISK;
135
136 typedef const struct tagMSICOLUMNHASHENTRY *MSIITERHANDLE;
137
138 typedef struct tagMSIVIEWOPS
139 {
140     /*
141      * fetch_int - reads one integer from {row,col} in the table
142      *
143      *  This function should be called after the execute method.
144      *  Data returned by the function should not change until
145      *   close or delete is called.
146      *  To get a string value, query the database's string table with
147      *   the integer value returned from this function.
148      */
149     UINT (*fetch_int)( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val );
150
151     /*
152      * fetch_stream - gets a stream from {row,col} in the table
153      *
154      *  This function is similar to fetch_int, except fetches a
155      *    stream instead of an integer.
156      */
157     UINT (*fetch_stream)( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm );
158
159     /*
160      * get_row - gets values from a row
161      *
162      */
163     UINT (*get_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec );
164
165     /*
166      * set_row - sets values in a row as specified by mask
167      *
168      *  Similar semantics to fetch_int
169      */
170     UINT (*set_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask );
171
172     /*
173      * Inserts a new row into the database from the records contents
174      */
175     UINT (*insert_row)( struct tagMSIVIEW *view, MSIRECORD *record, BOOL temporary );
176
177     /*
178      * Deletes a row from the database
179      */
180     UINT (*delete_row)( struct tagMSIVIEW *view, UINT row );
181
182     /*
183      * execute - loads the underlying data into memory so it can be read
184      */
185     UINT (*execute)( struct tagMSIVIEW *view, MSIRECORD *record );
186
187     /*
188      * close - clears the data read by execute from memory
189      */
190     UINT (*close)( struct tagMSIVIEW *view );
191
192     /*
193      * get_dimensions - returns the number of rows or columns in a table.
194      *
195      *  The number of rows can only be queried after the execute method
196      *   is called. The number of columns can be queried at any time.
197      */
198     UINT (*get_dimensions)( struct tagMSIVIEW *view, UINT *rows, UINT *cols );
199
200     /*
201      * get_column_info - returns the name and type of a specific column
202      *
203      *  The name is HeapAlloc'ed by this function and should be freed by
204      *   the caller.
205      *  The column information can be queried at any time.
206      */
207     UINT (*get_column_info)( struct tagMSIVIEW *view, UINT n, LPWSTR *name, UINT *type );
208
209     /*
210      * modify - not yet implemented properly
211      */
212     UINT (*modify)( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *record, UINT row );
213
214     /*
215      * delete - destroys the structure completely
216      */
217     UINT (*delete)( struct tagMSIVIEW * );
218
219     /*
220      * find_matching_rows - iterates through rows that match a value
221      *
222      * If the column type is a string then a string ID should be passed in.
223      *  If the value to be looked up is an integer then no transformation of
224      *  the input value is required, except if the column is a string, in which
225      *  case a string ID should be passed in.
226      * The handle is an input/output parameter that keeps track of the current
227      *  position in the iteration. It must be initialised to zero before the
228      *  first call and continued to be passed in to subsequent calls.
229      */
230     UINT (*find_matching_rows)( struct tagMSIVIEW *view, UINT col, UINT val, UINT *row, MSIITERHANDLE *handle );
231
232     /*
233      * add_ref - increases the reference count of the table
234      */
235     UINT (*add_ref)( struct tagMSIVIEW *view );
236
237     /*
238      * release - decreases the reference count of the table
239      */
240     UINT (*release)( struct tagMSIVIEW *view );
241
242     /*
243      * add_column - adds a column to the table
244      */
245     UINT (*add_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number, LPCWSTR column, UINT type, BOOL hold );
246
247     /*
248      * remove_column - removes the column represented by table name and column number from the table
249      */
250     UINT (*remove_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number );
251 } MSIVIEWOPS;
252
253 struct tagMSIVIEW
254 {
255     MSIOBJECTHDR hdr;
256     const MSIVIEWOPS *ops;
257 };
258
259 struct msi_dialog_tag;
260 typedef struct msi_dialog_tag msi_dialog;
261
262 typedef struct tagMSIPACKAGE
263 {
264     MSIOBJECTHDR hdr;
265     MSIDATABASE *db;
266     struct list components;
267     struct list features;
268     struct list files;
269     struct list tempfiles;
270     struct list folders;
271     LPWSTR ActionFormat;
272     LPWSTR LastAction;
273
274     struct list classes;
275     struct list extensions;
276     struct list progids;
277     struct list mimes;
278     struct list appids;
279
280     struct tagMSISCRIPT *script;
281
282     struct list RunningActions;
283
284     LPWSTR BaseURL;
285     LPWSTR PackagePath;
286     LPWSTR ProductCode;
287
288     UINT CurrentInstallState;
289     msi_dialog *dialog;
290     LPWSTR next_dialog;
291     float center_x;
292     float center_y;
293
294     UINT WordCount;
295
296     struct list subscriptions;
297
298     struct list sourcelist_info;
299     struct list sourcelist_media;
300
301     unsigned char scheduled_action_running : 1;
302     unsigned char commit_action_running : 1;
303     unsigned char rollback_action_running : 1;
304 } MSIPACKAGE;
305
306 typedef struct tagMSIPREVIEW
307 {
308     MSIOBJECTHDR hdr;
309     MSIPACKAGE *package;
310     msi_dialog *dialog;
311 } MSIPREVIEW;
312
313 #define MSI_MAX_PROPS 20
314
315 typedef struct tagMSISUMMARYINFO
316 {
317     MSIOBJECTHDR hdr;
318     IStorage *storage;
319     DWORD update_count;
320     PROPVARIANT property[MSI_MAX_PROPS];
321 } MSISUMMARYINFO;
322
323 typedef struct tagMSIFEATURE
324 {
325     struct list entry;
326     LPWSTR Feature;
327     LPWSTR Feature_Parent;
328     LPWSTR Title;
329     LPWSTR Description;
330     INT Display;
331     INT Level;
332     LPWSTR Directory;
333     INT Attributes;
334     INSTALLSTATE Installed;
335     INSTALLSTATE ActionRequest;
336     INSTALLSTATE Action;
337     struct list Children;
338     struct list Components;
339     INT Cost;
340 } MSIFEATURE;
341
342 typedef struct tagMSICOMPONENT
343 {
344     struct list entry;
345     DWORD magic;
346     LPWSTR Component;
347     LPWSTR ComponentId;
348     LPWSTR Directory;
349     INT Attributes;
350     LPWSTR Condition;
351     LPWSTR KeyPath;
352     INSTALLSTATE Installed;
353     INSTALLSTATE ActionRequest;
354     INSTALLSTATE Action;
355     BOOL ForceLocalState;
356     BOOL Enabled;
357     INT  Cost;
358     INT  RefCount;
359     LPWSTR FullKeypath;
360     LPWSTR AdvertiseString;
361
362     unsigned int anyAbsent:1;
363     unsigned int hasAdvertiseFeature:1;
364     unsigned int hasLocalFeature:1;
365     unsigned int hasSourceFeature:1;
366 } MSICOMPONENT;
367
368 typedef struct tagComponentList
369 {
370     struct list entry;
371     MSICOMPONENT *component;
372 } ComponentList;
373
374 typedef struct tagFeatureList
375 {
376     struct list entry;
377     MSIFEATURE *feature;
378 } FeatureList;
379
380 typedef struct tagMSIFOLDER
381 {
382     struct list entry;
383     LPWSTR Directory;
384     LPWSTR Parent;
385     LPWSTR TargetDefault;
386     LPWSTR SourceLongPath;
387     LPWSTR SourceShortPath;
388
389     LPWSTR ResolvedTarget;
390     LPWSTR ResolvedSource;
391     LPWSTR Property;   /* initially set property */
392     INT   State;
393         /* 0 = uninitialized */
394         /* 1 = existing */
395         /* 2 = created remove if empty */
396         /* 3 = created persist if empty */
397     INT   Cost;
398     INT   Space;
399 } MSIFOLDER;
400
401 typedef enum _msi_file_state {
402     msifs_invalid,
403     msifs_missing,
404     msifs_overwrite,
405     msifs_present,
406     msifs_installed,
407     msifs_skipped,
408 } msi_file_state;
409
410 typedef struct tagMSIFILE
411 {
412     struct list entry;
413     LPWSTR File;
414     MSICOMPONENT *Component;
415     LPWSTR FileName;
416     LPWSTR ShortName;
417     LPWSTR LongName;
418     INT FileSize;
419     LPWSTR Version;
420     LPWSTR Language;
421     INT Attributes;
422     INT Sequence;
423     msi_file_state state;
424     LPWSTR  SourcePath;
425     LPWSTR  TargetPath;
426     BOOL IsCompressed;
427     MSIFILEHASHINFO hash;
428 } MSIFILE;
429
430 typedef struct tagMSITEMPFILE
431 {
432     struct list entry;
433     LPWSTR Path;
434 } MSITEMPFILE;
435
436 typedef struct tagMSIAPPID
437 {
438     struct list entry;
439     LPWSTR AppID; /* Primary key */
440     LPWSTR RemoteServerName;
441     LPWSTR LocalServer;
442     LPWSTR ServiceParameters;
443     LPWSTR DllSurrogate;
444     BOOL ActivateAtStorage;
445     BOOL RunAsInteractiveUser;
446 } MSIAPPID;
447
448 typedef struct tagMSIPROGID MSIPROGID;
449
450 typedef struct tagMSICLASS
451 {
452     struct list entry;
453     LPWSTR clsid;     /* Primary Key */
454     LPWSTR Context;   /* Primary Key */
455     MSICOMPONENT *Component;
456     MSIPROGID *ProgID;
457     LPWSTR ProgIDText;
458     LPWSTR Description;
459     MSIAPPID *AppID;
460     LPWSTR FileTypeMask;
461     LPWSTR IconPath;
462     LPWSTR DefInprocHandler;
463     LPWSTR DefInprocHandler32;
464     LPWSTR Argument;
465     MSIFEATURE *Feature;
466     INT Attributes;
467     /* not in the table, set during installation */
468     BOOL Installed;
469 } MSICLASS;
470
471 typedef struct tagMSIMIME MSIMIME;
472
473 typedef struct tagMSIEXTENSION
474 {
475     struct list entry;
476     LPWSTR Extension;  /* Primary Key */
477     MSICOMPONENT *Component;
478     MSIPROGID *ProgID;
479     LPWSTR ProgIDText;
480     MSIMIME *Mime;
481     MSIFEATURE *Feature;
482     /* not in the table, set during installation */
483     BOOL Installed;
484     struct list verbs;
485 } MSIEXTENSION;
486
487 struct tagMSIPROGID
488 {
489     struct list entry;
490     LPWSTR ProgID;  /* Primary Key */
491     MSIPROGID *Parent;
492     MSICLASS *Class;
493     LPWSTR Description;
494     LPWSTR IconPath;
495     /* not in the table, set during installation */
496     BOOL InstallMe;
497     MSIPROGID *CurVer;
498     MSIPROGID *VersionInd;
499 };
500
501 typedef struct tagMSIVERB
502 {
503     struct list entry;
504     LPWSTR Verb;
505     INT Sequence;
506     LPWSTR Command;
507     LPWSTR Argument;
508 } MSIVERB;
509
510 struct tagMSIMIME
511 {
512     struct list entry;
513     LPWSTR ContentType;  /* Primary Key */
514     MSIEXTENSION *Extension;
515     LPWSTR clsid;
516     MSICLASS *Class;
517     /* not in the table, set during installation */
518     BOOL InstallMe;
519 };
520
521 enum SCRIPTS {
522     INSTALL_SCRIPT = 0,
523     COMMIT_SCRIPT = 1,
524     ROLLBACK_SCRIPT = 2,
525     TOTAL_SCRIPTS = 3
526 };
527
528 #define SEQUENCE_UI       0x1
529 #define SEQUENCE_EXEC     0x2
530 #define SEQUENCE_INSTALL  0x10
531
532 typedef struct tagMSISCRIPT
533 {
534     LPWSTR  *Actions[TOTAL_SCRIPTS];
535     UINT    ActionCount[TOTAL_SCRIPTS];
536     BOOL    ExecuteSequenceRun;
537     BOOL    CurrentlyScripting;
538     UINT    InWhatSequence;
539     LPWSTR  *UniqueActions;
540     UINT    UniqueActionsCount;
541 } MSISCRIPT;
542
543 #define MSIHANDLETYPE_ANY 0
544 #define MSIHANDLETYPE_DATABASE 1
545 #define MSIHANDLETYPE_SUMMARYINFO 2
546 #define MSIHANDLETYPE_VIEW 3
547 #define MSIHANDLETYPE_RECORD 4
548 #define MSIHANDLETYPE_PACKAGE 5
549 #define MSIHANDLETYPE_PREVIEW 6
550
551 #define MSI_MAJORVERSION 3
552 #define MSI_MINORVERSION 1
553 #define MSI_BUILDNUMBER 4000
554
555 #define GUID_SIZE 39
556
557 #define MSIHANDLE_MAGIC 0x4d434923
558
559 DEFINE_GUID(CLSID_IMsiServer,   0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
560 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
561 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
562 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
563
564 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
565
566 DEFINE_GUID(CLSID_IWineMsiRemoteCustomAction,0xBA26E6FA,0x4F27,0x4f56,0x95,0x3A,0x3F,0x90,0x27,0x20,0x18,0xAA);
567 DEFINE_GUID(CLSID_IWineMsiRemotePackage,0x902b3592,0x9d08,0x4dfd,0xa5,0x93,0xd0,0x7c,0x52,0x54,0x64,0x21);
568
569 /* handle unicode/ascii output in the Msi* API functions */
570 typedef struct {
571     BOOL unicode;
572     union {
573        LPSTR a;
574        LPWSTR w;
575     } str;
576 } awstring;
577
578 typedef struct {
579     BOOL unicode;
580     union {
581        LPCSTR a;
582        LPCWSTR w;
583     } str;
584 } awcstring;
585
586 UINT msi_strcpy_to_awstring( LPCWSTR str, awstring *awbuf, DWORD *sz );
587
588 /* msi server interface */
589 extern ITypeLib *get_msi_typelib( LPWSTR *path );
590 extern HRESULT create_msi_custom_remote( IUnknown *pOuter, LPVOID *ppObj );
591 extern HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj );
592 extern HRESULT create_msi_remote_database( IUnknown *pOuter, LPVOID *ppObj );
593 extern IUnknown *msi_get_remote(MSIHANDLE handle);
594
595 /* handle functions */
596 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
597 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
598 extern MSIHANDLE alloc_msi_remote_handle( IUnknown *unk );
599 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
600 extern void msiobj_addref(MSIOBJECTHDR *);
601 extern int msiobj_release(MSIOBJECTHDR *);
602 extern void msiobj_lock(MSIOBJECTHDR *);
603 extern void msiobj_unlock(MSIOBJECTHDR *);
604 extern void msi_free_handle_table(void);
605
606 extern void free_cached_tables( MSIDATABASE *db );
607 extern void msi_free_transforms( MSIDATABASE *db );
608 extern UINT MSI_CommitTables( MSIDATABASE *db );
609
610
611 /* string table functions */
612 enum StringPersistence
613 {
614     StringPersistent = 0,
615     StringNonPersistent = 1
616 };
617
618 extern BOOL msi_addstringW( string_table *st, UINT string_no, const WCHAR *data, int len, UINT refcount, enum StringPersistence persistence );
619 extern UINT msi_id2stringW( const string_table *st, UINT string_no, LPWSTR buffer, UINT *sz );
620 extern UINT msi_id2stringA( const string_table *st, UINT string_no, LPSTR buffer, UINT *sz );
621
622 extern UINT msi_string2idW( const string_table *st, LPCWSTR buffer, UINT *id );
623 extern UINT msi_string2idA( const string_table *st, LPCSTR str, UINT *id );
624 extern VOID msi_destroy_stringtable( string_table *st );
625 extern UINT msi_strcmp( const string_table *st, UINT lval, UINT rval, UINT *res );
626 extern const WCHAR *msi_string_lookup_id( const string_table *st, UINT id );
627 extern HRESULT msi_init_string_table( IStorage *stg );
628 extern string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref );
629 extern UINT msi_save_string_table( const string_table *st, IStorage *storage );
630
631
632 extern void msi_table_set_strref(UINT bytes_per_strref);
633 extern BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name );
634 extern MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table );
635
636 extern UINT read_raw_stream_data( MSIDATABASE *db, LPCWSTR stname,
637                                   USHORT **pdata, UINT *psz );
638 extern UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
639                               BYTE **pdata, UINT *psz );
640 extern UINT write_stream_data( IStorage *stg, LPCWSTR stname,
641                                LPCVOID data, UINT sz, BOOL bTable );
642
643 /* transform functions */
644 extern UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg );
645 extern UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
646                  LPCWSTR szTransformFile, int iErrorCond );
647 extern void append_storage_to_db( MSIDATABASE *db, IStorage *stg );
648
649 /* action internals */
650 extern UINT MSI_InstallPackage( MSIPACKAGE *, LPCWSTR, LPCWSTR );
651 extern void ACTION_free_package_structures( MSIPACKAGE* );
652 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
653 extern UINT ACTION_ForceReboot(MSIPACKAGE *package);
654 extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMode );
655 extern UINT MSI_SetFeatureStates( MSIPACKAGE *package );
656 extern UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine );
657
658 /* record internals */
659 extern UINT MSI_RecordSetIStream( MSIRECORD *, UINT, IStream *);
660 extern UINT MSI_RecordGetIStream( MSIRECORD *, UINT, IStream **);
661 extern const WCHAR *MSI_RecordGetString( const MSIRECORD *, UINT );
662 extern MSIRECORD *MSI_CreateRecord( UINT );
663 extern UINT MSI_RecordSetInteger( MSIRECORD *, UINT, int );
664 extern UINT MSI_RecordSetStringW( MSIRECORD *, UINT, LPCWSTR );
665 extern UINT MSI_RecordSetStringA( MSIRECORD *, UINT, LPCSTR );
666 extern BOOL MSI_RecordIsNull( MSIRECORD *, UINT );
667 extern UINT MSI_RecordGetStringW( MSIRECORD * , UINT, LPWSTR, LPDWORD);
668 extern UINT MSI_RecordGetStringA( MSIRECORD *, UINT, LPSTR, LPDWORD);
669 extern int MSI_RecordGetInteger( MSIRECORD *, UINT );
670 extern UINT MSI_RecordReadStream( MSIRECORD *, UINT, char *, LPDWORD);
671 extern UINT MSI_RecordGetFieldCount( const MSIRECORD *rec );
672 extern UINT MSI_RecordSetStream( MSIRECORD *, UINT, IStream * );
673 extern UINT MSI_RecordDataSize( MSIRECORD *, UINT );
674 extern UINT MSI_RecordStreamToFile( MSIRECORD *, UINT, LPCWSTR );
675 extern UINT MSI_RecordCopyField( MSIRECORD *, UINT, MSIRECORD *, UINT );
676
677 /* stream internals */
678 extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
679 extern UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm );
680 extern void enum_stream_names( IStorage *stg );
681 extern BOOL decode_streamname(LPCWSTR in, LPWSTR out);
682 extern LPWSTR encode_streamname(BOOL bTable, LPCWSTR in);
683
684 /* database internals */
685 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
686 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
687 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
688 typedef UINT (*record_func)( MSIRECORD *, LPVOID );
689 extern UINT MSI_IterateRecords( MSIQUERY *, LPDWORD, record_func, LPVOID );
690 extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
691 extern UINT MSI_DatabaseImport( MSIDATABASE *, LPCWSTR, LPCWSTR );
692 extern UINT MSI_DatabaseExport( MSIDATABASE *, LPCWSTR, LPCWSTR, LPCWSTR );
693 extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
694
695 /* view internals */
696 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
697 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
698 extern UINT MSI_ViewClose( MSIQUERY* );
699 extern UINT MSI_ViewGetColumnInfo(MSIQUERY *, MSICOLINFO, MSIRECORD **);
700 extern UINT MSI_ViewModify( MSIQUERY *, MSIMODIFY, MSIRECORD * );
701 extern UINT VIEW_find_column( MSIVIEW *, LPCWSTR, UINT * );
702 extern UINT msi_view_get_row(MSIDATABASE *, MSIVIEW *, UINT, MSIRECORD **);
703
704 /* install internals */
705 extern UINT MSI_SetInstallLevel( MSIPACKAGE *package, int iInstallLevel );
706
707 /* package internals */
708 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *, LPCWSTR );
709 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE **pPackage );
710 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
711 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
712 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
713 extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, LPDWORD );
714 extern UINT MSI_GetPropertyA(MSIPACKAGE *, LPCSTR, LPSTR, LPDWORD );
715 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
716 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
717 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
718 extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
719 extern LPCWSTR msi_download_file( LPCWSTR szUrl, LPWSTR filename );
720 extern UINT msi_package_add_info(MSIPACKAGE *, DWORD, DWORD, LPCWSTR, LPWSTR);
721 extern UINT msi_package_add_media_disk(MSIPACKAGE *, DWORD, DWORD, DWORD, LPWSTR, LPWSTR);
722 extern UINT msi_clone_properties(MSIPACKAGE *);
723
724 /* for deformating */
725 extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, LPDWORD );
726
727 /* registry data encoding/decoding functions */
728 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
729 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
730 extern BOOL encode_base85_guid(GUID *,LPWSTR);
731 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
732 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
733 extern UINT MSIREG_DeleteUninstallKey(LPCWSTR szProduct);
734 extern UINT MSIREG_OpenUserProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
735 extern UINT MSIREG_OpenUserPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
736 extern UINT MSIREG_OpenFeatures(HKEY* key);
737 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
738 extern UINT MSIREG_OpenUserDataFeaturesKey(LPCWSTR szProduct, HKEY *key, BOOL create);
739 extern UINT MSIREG_OpenComponents(HKEY* key);
740 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
741 extern UINT MSIREG_OpenComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
742 extern UINT MSIREG_OpenUserDataComponentKey(LPCWSTR szComponent, HKEY *key, BOOL create);
743 extern UINT MSIREG_OpenProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
744 extern UINT MSIREG_OpenPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
745 extern UINT MSIREG_OpenUserDataProductKey(LPCWSTR szProduct, HKEY* key, BOOL create);
746 extern UINT MSIREG_OpenInstallPropertiesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
747 extern UINT MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
748 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
749 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
750 extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
751 extern UINT MSIREG_DeleteProductKey(LPCWSTR szProduct);
752 extern UINT MSIREG_DeleteUserProductKey(LPCWSTR szProduct);
753 extern UINT MSIREG_DeleteUserDataProductKey(LPCWSTR szProduct);
754 extern UINT MSIREG_OpenLocalSystemProductKey(LPCWSTR szProductCode, HKEY *key, BOOL create);
755 extern UINT MSIREG_OpenLocalSystemComponentKey(LPCWSTR szComponent, HKEY *key, BOOL create);
756 extern UINT MSIREG_OpenLocalClassesProductKey(LPCWSTR szProductCode, HKEY *key, BOOL create);
757 extern UINT MSIREG_OpenLocalManagedProductKey(LPCWSTR szProductCode, HKEY *key, BOOL create);
758 extern UINT MSIREG_DeleteUserFeaturesKey(LPCWSTR szProduct);
759 extern UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent);
760
761 extern LPWSTR msi_reg_get_val_str( HKEY hkey, LPCWSTR name );
762 extern BOOL msi_reg_get_val_dword( HKEY hkey, LPCWSTR name, DWORD *val);
763
764 extern DWORD msi_version_str_to_dword(LPCWSTR p);
765 extern LPWSTR msi_version_dword_to_str(DWORD version);
766
767 extern LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
768 extern LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
769 extern LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val );
770 extern LONG msi_reg_set_subkey_val( HKEY hkey, LPCWSTR path, LPCWSTR name, LPCWSTR val );
771
772 /* msi dialog interface */
773 typedef UINT (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
774 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog*, msi_dialog_event_handler );
775 extern UINT msi_dialog_run_message_loop( msi_dialog* );
776 extern void msi_dialog_end_dialog( msi_dialog* );
777 extern void msi_dialog_check_messages( HANDLE );
778 extern void msi_dialog_do_preview( msi_dialog* );
779 extern void msi_dialog_destroy( msi_dialog* );
780 extern BOOL msi_dialog_register_class( void );
781 extern void msi_dialog_unregister_class( void );
782 extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
783 extern UINT msi_dialog_reset( msi_dialog *dialog );
784 extern UINT msi_dialog_directorylist_up( msi_dialog *dialog );
785 extern msi_dialog *msi_dialog_get_parent( msi_dialog *dialog );
786 extern LPWSTR msi_dialog_get_name( msi_dialog *dialog );
787 extern UINT msi_spawn_error_dialog( MSIPACKAGE*, LPWSTR, LPWSTR );
788
789 /* preview */
790 extern MSIPREVIEW *MSI_EnableUIPreview( MSIDATABASE * );
791 extern UINT MSI_PreviewDialogW( MSIPREVIEW *, LPCWSTR );
792
793 /* summary information */
794 extern MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount );
795 extern LPWSTR msi_suminfo_dup_string( MSISUMMARYINFO *si, UINT uiProperty );
796 extern LPWSTR msi_get_suminfo_product( IStorage *stg );
797
798 /* undocumented functions */
799 UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
800 UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, LPDWORD );
801 UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, LPDWORD );
802 LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
803 LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
804
805 /* UI globals */
806 extern INSTALLUILEVEL gUILevel;
807 extern HWND gUIhwnd;
808 extern INSTALLUI_HANDLERA gUIHandlerA;
809 extern INSTALLUI_HANDLERW gUIHandlerW;
810 extern DWORD gUIFilter;
811 extern LPVOID gUIContext;
812 extern WCHAR gszLogFile[MAX_PATH];
813 extern HINSTANCE msi_hInstance;
814
815 /* action related functions */
816 extern UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, UINT script, BOOL force);
817 extern UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action, UINT script);
818 extern void ACTION_FinishCustomActions( const MSIPACKAGE* package);
819 extern UINT ACTION_CustomAction(MSIPACKAGE *package,const WCHAR *action, UINT script, BOOL execute);
820
821 static inline void msi_feature_set_state( MSIFEATURE *feature, INSTALLSTATE state )
822 {
823     feature->ActionRequest = state;
824     feature->Action = state;
825 }
826
827 static inline void msi_component_set_state( MSICOMPONENT *comp, INSTALLSTATE state )
828 {
829     comp->ActionRequest = state;
830     comp->Action = state;
831 }
832
833 /* actions in other modules */
834 extern UINT ACTION_AppSearch(MSIPACKAGE *package);
835 extern UINT ACTION_CCPSearch(MSIPACKAGE *package);
836 extern UINT ACTION_FindRelatedProducts(MSIPACKAGE *package);
837 extern UINT ACTION_InstallFiles(MSIPACKAGE *package);
838 extern UINT ACTION_RemoveFiles(MSIPACKAGE *package);
839 extern UINT ACTION_DuplicateFiles(MSIPACKAGE *package);
840 extern UINT ACTION_RegisterClassInfo(MSIPACKAGE *package);
841 extern UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package);
842 extern UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package);
843 extern UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package);
844 extern UINT ACTION_RegisterFonts(MSIPACKAGE *package);
845
846 /* Helpers */
847 extern DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data );
848 extern LPWSTR msi_dup_record_field(MSIRECORD *row, INT index);
849 extern LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop);
850 extern int msi_get_property_int( MSIPACKAGE *package, LPCWSTR prop, int def );
851 extern LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
852                       BOOL set_prop, BOOL load_prop, MSIFOLDER **folder);
853 extern MSICOMPONENT *get_loaded_component( MSIPACKAGE* package, LPCWSTR Component );
854 extern MSIFEATURE *get_loaded_feature( MSIPACKAGE* package, LPCWSTR Feature );
855 extern MSIFILE *get_loaded_file( MSIPACKAGE* package, LPCWSTR file );
856 extern MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir );
857 extern int track_tempfile(MSIPACKAGE *package, LPCWSTR path);
858 extern UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action);
859 extern void msi_free_action_script(MSIPACKAGE *package, UINT script);
860 extern LPWSTR build_icon_path(MSIPACKAGE *, LPCWSTR);
861 extern LPWSTR build_directory_name(DWORD , ...);
862 extern BOOL create_full_pathW(const WCHAR *path);
863 extern BOOL ACTION_VerifyComponentForAction(const MSICOMPONENT*, INSTALLSTATE);
864 extern BOOL ACTION_VerifyFeatureForAction(const MSIFEATURE*, INSTALLSTATE);
865 extern void reduce_to_longfilename(WCHAR*);
866 extern void reduce_to_shortfilename(WCHAR*);
867 extern LPWSTR create_component_advertise_string(MSIPACKAGE*, MSICOMPONENT*, LPCWSTR);
868 extern void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature);
869 extern UINT register_unique_action(MSIPACKAGE *, LPCWSTR);
870 extern BOOL check_unique_action(const MSIPACKAGE *, LPCWSTR);
871 extern WCHAR* generate_error_string(MSIPACKAGE *, UINT, DWORD, ... );
872 extern UINT msi_create_component_directories( MSIPACKAGE *package );
873 extern void msi_ui_error( DWORD msg_id, DWORD type );
874
875 /* control event stuff */
876 extern VOID ControlEvent_FireSubscribedEvent(MSIPACKAGE *package, LPCWSTR event,
877                                       MSIRECORD *data);
878 extern VOID ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE *package, LPWSTR dialog);
879 extern VOID ControlEvent_CleanupSubscriptions(MSIPACKAGE *package);
880 extern VOID ControlEvent_SubscribeToEvent(MSIPACKAGE *package, msi_dialog *dialog,
881                                       LPCWSTR event, LPCWSTR control, LPCWSTR attribute);
882 extern VOID ControlEvent_UnSubscribeToEvent( MSIPACKAGE *package, LPCWSTR event,
883                                       LPCWSTR control, LPCWSTR attribute );
884
885 /* OLE automation */
886 extern HRESULT create_msiserver(IUnknown *pOuter, LPVOID *ppObj);
887 extern HRESULT create_session(MSIHANDLE msiHandle, IDispatch *pInstaller, IDispatch **pDispatch);
888 extern HRESULT load_type_info(IDispatch *iface, ITypeInfo **pptinfo, REFIID clsid, LCID lcid);
889
890 /* Scripting */
891 extern DWORD call_script(MSIHANDLE hPackage, INT type, LPCWSTR script, LPCWSTR function, LPCWSTR action);
892
893 /* User Interface messages from the actions */
894 extern void ui_progress(MSIPACKAGE *, int, int, int, int);
895 extern void ui_actiondata(MSIPACKAGE *, LPCWSTR, MSIRECORD *);
896
897 /* string consts use a number of places  and defined in helpers.c*/
898 extern const WCHAR cszSourceDir[];
899 extern const WCHAR cszSOURCEDIR[];
900 extern const WCHAR szProductCode[];
901 extern const WCHAR cszRootDrive[];
902 extern const WCHAR cszbs[];
903
904 /* memory allocation macro functions */
905 static inline void *msi_alloc( size_t len )
906 {
907     return HeapAlloc( GetProcessHeap(), 0, len );
908 }
909
910 static inline void *msi_alloc_zero( size_t len )
911 {
912     return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
913 }
914
915 static inline void *msi_realloc( void *mem, size_t len )
916 {
917     return HeapReAlloc( GetProcessHeap(), 0, mem, len );
918 }
919
920 static inline void *msi_realloc_zero( void *mem, size_t len )
921 {
922     return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len );
923 }
924
925 static inline BOOL msi_free( void *mem )
926 {
927     return HeapFree( GetProcessHeap(), 0, mem );
928 }
929
930 static inline char *strdupWtoA( LPCWSTR str )
931 {
932     LPSTR ret = NULL;
933     DWORD len;
934
935     if (!str) return ret;
936     len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
937     ret = msi_alloc( len );
938     if (ret)
939         WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
940     return ret;
941 }
942
943 static inline LPWSTR strdupAtoW( LPCSTR str )
944 {
945     LPWSTR ret = NULL;
946     DWORD len;
947
948     if (!str) return ret;
949     len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
950     ret = msi_alloc( len * sizeof(WCHAR) );
951     if (ret)
952         MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
953     return ret;
954 }
955
956 static inline LPWSTR strdupW( LPCWSTR src )
957 {
958     LPWSTR dest;
959     if (!src) return NULL;
960     dest = msi_alloc( (lstrlenW(src)+1)*sizeof(WCHAR) );
961     if (dest)
962         lstrcpyW(dest, src);
963     return dest;
964 }
965
966 #endif /* __WINE_MSI_PRIVATE__ */