msi: Read supported platform and language ids from the summary information stream.
[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 "fdi.h"
30 #include "msi.h"
31 #include "msiquery.h"
32 #include "objbase.h"
33 #include "objidl.h"
34 #include "winnls.h"
35 #include "winver.h"
36 #include "wine/list.h"
37 #include "wine/debug.h"
38
39 #define MSI_DATASIZEMASK 0x00ff
40 #define MSITYPE_VALID    0x0100
41 #define MSITYPE_LOCALIZABLE 0x200
42 #define MSITYPE_STRING   0x0800
43 #define MSITYPE_NULLABLE 0x1000
44 #define MSITYPE_KEY      0x2000
45 #define MSITYPE_TEMPORARY 0x4000
46
47 #define MAX_STREAM_NAME_LEN     62
48
49 /* Install UI level mask for AND operation to exclude flags */
50 #define INSTALLUILEVEL_MASK             0x0007
51
52 #define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
53
54 struct tagMSITABLE;
55 typedef struct tagMSITABLE MSITABLE;
56
57 struct string_table;
58 typedef struct string_table string_table;
59
60 struct tagMSIOBJECTHDR;
61 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
62
63 typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
64
65 struct tagMSIOBJECTHDR
66 {
67     UINT magic;
68     UINT type;
69     LONG refcount;
70     msihandledestructor destructor;
71 };
72
73 typedef struct tagMSIDATABASE
74 {
75     MSIOBJECTHDR hdr;
76     IStorage *storage;
77     string_table *strings;
78     UINT bytes_per_strref;
79     LPWSTR path;
80     LPWSTR deletefile;
81     LPWSTR localfile;
82     LPCWSTR mode;
83     struct list tables;
84     struct list transforms;
85     struct list streams;
86 } MSIDATABASE;
87
88 typedef struct tagMSIVIEW MSIVIEW;
89
90 typedef struct tagMSIQUERY
91 {
92     MSIOBJECTHDR hdr;
93     MSIVIEW *view;
94     UINT row;
95     MSIDATABASE *db;
96     struct list mem;
97 } MSIQUERY;
98
99 /* maybe we can use a Variant instead of doing it ourselves? */
100 typedef struct tagMSIFIELD
101 {
102     UINT type;
103     union
104     {
105         INT iVal;
106         INT_PTR pVal;
107         LPWSTR szwVal;
108         IStream *stream;
109     } u;
110 } MSIFIELD;
111
112 typedef struct tagMSIRECORD
113 {
114     MSIOBJECTHDR hdr;
115     UINT count;       /* as passed to MsiCreateRecord */
116     MSIFIELD fields[1]; /* nb. array size is count+1 */
117 } MSIRECORD;
118
119 typedef struct tagMSISOURCELISTINFO
120 {
121     struct list entry;
122     DWORD context;
123     DWORD options;
124     LPCWSTR property;
125     LPWSTR value;
126 } MSISOURCELISTINFO;
127
128 typedef struct tagMSIMEDIADISK
129 {
130     struct list entry;
131     DWORD context;
132     DWORD options;
133     DWORD disk_id;
134     LPWSTR volume_label;
135     LPWSTR disk_prompt;
136 } MSIMEDIADISK;
137
138 typedef struct tagMSIMEDIAINFO
139 {
140     UINT disk_id;
141     UINT type;
142     UINT last_sequence;
143     LPWSTR disk_prompt;
144     LPWSTR cabinet;
145     LPWSTR first_volume;
146     LPWSTR volume_label;
147     BOOL is_continuous;
148     BOOL is_extracted;
149     WCHAR sourcedir[MAX_PATH];
150 } MSIMEDIAINFO;
151
152 typedef struct tagMSIPATCHINFO
153 {
154     struct list entry;
155     LPWSTR patchcode;
156     LPWSTR transforms;
157     LPWSTR localfile;
158     MSIPATCHSTATE state;
159 } MSIPATCHINFO;
160
161 typedef struct _column_info
162 {
163     LPCWSTR table;
164     LPCWSTR column;
165     INT   type;
166     BOOL   temporary;
167     struct expr *val;
168     struct _column_info *next;
169 } column_info;
170
171 typedef const struct tagMSICOLUMNHASHENTRY *MSIITERHANDLE;
172
173 typedef struct tagMSIVIEWOPS
174 {
175     /*
176      * fetch_int - reads one integer from {row,col} in the table
177      *
178      *  This function should be called after the execute method.
179      *  Data returned by the function should not change until
180      *   close or delete is called.
181      *  To get a string value, query the database's string table with
182      *   the integer value returned from this function.
183      */
184     UINT (*fetch_int)( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val );
185
186     /*
187      * fetch_stream - gets a stream from {row,col} in the table
188      *
189      *  This function is similar to fetch_int, except fetches a
190      *    stream instead of an integer.
191      */
192     UINT (*fetch_stream)( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm );
193
194     /*
195      * get_row - gets values from a row
196      *
197      */
198     UINT (*get_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec );
199
200     /*
201      * set_row - sets values in a row as specified by mask
202      *
203      *  Similar semantics to fetch_int
204      */
205     UINT (*set_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask );
206
207     /*
208      * Inserts a new row into the database from the records contents
209      */
210     UINT (*insert_row)( struct tagMSIVIEW *view, MSIRECORD *record, UINT row, BOOL temporary );
211
212     /*
213      * Deletes a row from the database
214      */
215     UINT (*delete_row)( struct tagMSIVIEW *view, UINT row );
216
217     /*
218      * execute - loads the underlying data into memory so it can be read
219      */
220     UINT (*execute)( struct tagMSIVIEW *view, MSIRECORD *record );
221
222     /*
223      * close - clears the data read by execute from memory
224      */
225     UINT (*close)( struct tagMSIVIEW *view );
226
227     /*
228      * get_dimensions - returns the number of rows or columns in a table.
229      *
230      *  The number of rows can only be queried after the execute method
231      *   is called. The number of columns can be queried at any time.
232      */
233     UINT (*get_dimensions)( struct tagMSIVIEW *view, UINT *rows, UINT *cols );
234
235     /*
236      * get_column_info - returns the name and type of a specific column
237      *
238      *  The name and tablename is HeapAlloc'ed by this function and should be
239      *  freed by the caller.
240      *  The column information can be queried at any time.
241      */
242     UINT (*get_column_info)( struct tagMSIVIEW *view, UINT n, LPWSTR *name, UINT *type, BOOL *temporary, LPWSTR *tableName);
243
244     /*
245      * modify - not yet implemented properly
246      */
247     UINT (*modify)( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *record, UINT row );
248
249     /*
250      * delete - destroys the structure completely
251      */
252     UINT (*delete)( struct tagMSIVIEW * );
253
254     /*
255      * find_matching_rows - iterates through rows that match a value
256      *
257      * If the column type is a string then a string ID should be passed in.
258      *  If the value to be looked up is an integer then no transformation of
259      *  the input value is required, except if the column is a string, in which
260      *  case a string ID should be passed in.
261      * The handle is an input/output parameter that keeps track of the current
262      *  position in the iteration. It must be initialised to zero before the
263      *  first call and continued to be passed in to subsequent calls.
264      */
265     UINT (*find_matching_rows)( struct tagMSIVIEW *view, UINT col, UINT val, UINT *row, MSIITERHANDLE *handle );
266
267     /*
268      * add_ref - increases the reference count of the table
269      */
270     UINT (*add_ref)( struct tagMSIVIEW *view );
271
272     /*
273      * release - decreases the reference count of the table
274      */
275     UINT (*release)( struct tagMSIVIEW *view );
276
277     /*
278      * add_column - adds a column to the table
279      */
280     UINT (*add_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number, LPCWSTR column, UINT type, BOOL hold );
281
282     /*
283      * remove_column - removes the column represented by table name and column number from the table
284      */
285     UINT (*remove_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number );
286
287     /*
288      * sort - orders the table by columns
289      */
290     UINT (*sort)( struct tagMSIVIEW *view, column_info *columns );
291
292     /*
293      * drop - drops the table from the database
294      */
295     UINT (*drop)( struct tagMSIVIEW *view );
296 } MSIVIEWOPS;
297
298 struct tagMSIVIEW
299 {
300     MSIOBJECTHDR hdr;
301     const MSIVIEWOPS *ops;
302 };
303
304 struct msi_dialog_tag;
305 typedef struct msi_dialog_tag msi_dialog;
306
307 enum platform
308 {
309     PLATFORM_INTEL,
310     PLATFORM_INTEL64,
311     PLATFORM_X64
312 };
313
314 typedef struct tagMSIPACKAGE
315 {
316     MSIOBJECTHDR hdr;
317     MSIDATABASE *db;
318     enum platform platform;
319     UINT num_langids;
320     LANGID *langids;
321     struct list patches;
322     struct list components;
323     struct list features;
324     struct list files;
325     struct list tempfiles;
326     struct list folders;
327     LPWSTR ActionFormat;
328     LPWSTR LastAction;
329
330     struct list classes;
331     struct list extensions;
332     struct list progids;
333     struct list mimes;
334     struct list appids;
335
336     struct tagMSISCRIPT *script;
337
338     struct list RunningActions;
339
340     LPWSTR BaseURL;
341     LPWSTR PackagePath;
342     LPWSTR ProductCode;
343
344     UINT CurrentInstallState;
345     msi_dialog *dialog;
346     LPWSTR next_dialog;
347     float center_x;
348     float center_y;
349
350     UINT WordCount;
351     UINT Context;
352
353     struct list subscriptions;
354
355     struct list sourcelist_info;
356     struct list sourcelist_media;
357
358     unsigned char scheduled_action_running : 1;
359     unsigned char commit_action_running : 1;
360     unsigned char rollback_action_running : 1;
361     unsigned char need_reboot : 1;
362 } MSIPACKAGE;
363
364 typedef struct tagMSIPREVIEW
365 {
366     MSIOBJECTHDR hdr;
367     MSIPACKAGE *package;
368     msi_dialog *dialog;
369 } MSIPREVIEW;
370
371 #define MSI_MAX_PROPS 20
372
373 typedef struct tagMSISUMMARYINFO
374 {
375     MSIOBJECTHDR hdr;
376     IStorage *storage;
377     DWORD update_count;
378     PROPVARIANT property[MSI_MAX_PROPS];
379 } MSISUMMARYINFO;
380
381 typedef struct tagMSIFEATURE
382 {
383     struct list entry;
384     LPWSTR Feature;
385     LPWSTR Feature_Parent;
386     LPWSTR Title;
387     LPWSTR Description;
388     INT Display;
389     INT Level;
390     LPWSTR Directory;
391     INT Attributes;
392     INSTALLSTATE Installed;
393     INSTALLSTATE ActionRequest;
394     INSTALLSTATE Action;
395     struct list Children;
396     struct list Components;
397 } MSIFEATURE;
398
399 typedef struct tagMSICOMPONENT
400 {
401     struct list entry;
402     DWORD magic;
403     LPWSTR Component;
404     LPWSTR ComponentId;
405     LPWSTR Directory;
406     INT Attributes;
407     LPWSTR Condition;
408     LPWSTR KeyPath;
409     INSTALLSTATE Installed;
410     INSTALLSTATE ActionRequest;
411     INSTALLSTATE Action;
412     BOOL ForceLocalState;
413     BOOL Enabled;
414     INT  Cost;
415     INT  RefCount;
416     LPWSTR FullKeypath;
417     LPWSTR AdvertiseString;
418
419     unsigned int anyAbsent:1;
420     unsigned int hasAdvertiseFeature:1;
421     unsigned int hasLocalFeature:1;
422     unsigned int hasSourceFeature:1;
423 } MSICOMPONENT;
424
425 typedef struct tagComponentList
426 {
427     struct list entry;
428     MSICOMPONENT *component;
429 } ComponentList;
430
431 typedef struct tagFeatureList
432 {
433     struct list entry;
434     MSIFEATURE *feature;
435 } FeatureList;
436
437 typedef struct tagMSIFOLDER
438 {
439     struct list entry;
440     LPWSTR Directory;
441     LPWSTR Parent;
442     LPWSTR TargetDefault;
443     LPWSTR SourceLongPath;
444     LPWSTR SourceShortPath;
445
446     LPWSTR ResolvedTarget;
447     LPWSTR ResolvedSource;
448     LPWSTR Property;   /* initially set property */
449     INT   State;
450         /* 0 = uninitialized */
451         /* 1 = existing */
452         /* 2 = created remove if empty */
453         /* 3 = created persist if empty */
454     INT   Cost;
455     INT   Space;
456 } MSIFOLDER;
457
458 typedef enum _msi_file_state {
459     msifs_invalid,
460     msifs_missing,
461     msifs_overwrite,
462     msifs_present,
463     msifs_installed,
464     msifs_skipped,
465 } msi_file_state;
466
467 typedef struct tagMSIFILE
468 {
469     struct list entry;
470     LPWSTR File;
471     MSICOMPONENT *Component;
472     LPWSTR FileName;
473     LPWSTR ShortName;
474     LPWSTR LongName;
475     INT FileSize;
476     LPWSTR Version;
477     LPWSTR Language;
478     INT Attributes;
479     INT Sequence;
480     msi_file_state state;
481     LPWSTR  TargetPath;
482     BOOL IsCompressed;
483     MSIFILEHASHINFO hash;
484     UINT disk_id;
485 } MSIFILE;
486
487 typedef struct tagMSITEMPFILE
488 {
489     struct list entry;
490     LPWSTR Path;
491 } MSITEMPFILE;
492
493 typedef struct tagMSIAPPID
494 {
495     struct list entry;
496     LPWSTR AppID; /* Primary key */
497     LPWSTR RemoteServerName;
498     LPWSTR LocalServer;
499     LPWSTR ServiceParameters;
500     LPWSTR DllSurrogate;
501     BOOL ActivateAtStorage;
502     BOOL RunAsInteractiveUser;
503 } MSIAPPID;
504
505 typedef struct tagMSIPROGID MSIPROGID;
506
507 typedef struct tagMSICLASS
508 {
509     struct list entry;
510     LPWSTR clsid;     /* Primary Key */
511     LPWSTR Context;   /* Primary Key */
512     MSICOMPONENT *Component;
513     MSIPROGID *ProgID;
514     LPWSTR ProgIDText;
515     LPWSTR Description;
516     MSIAPPID *AppID;
517     LPWSTR FileTypeMask;
518     LPWSTR IconPath;
519     LPWSTR DefInprocHandler;
520     LPWSTR DefInprocHandler32;
521     LPWSTR Argument;
522     MSIFEATURE *Feature;
523     INT Attributes;
524     /* not in the table, set during installation */
525     BOOL Installed;
526 } MSICLASS;
527
528 typedef struct tagMSIMIME MSIMIME;
529
530 typedef struct tagMSIEXTENSION
531 {
532     struct list entry;
533     LPWSTR Extension;  /* Primary Key */
534     MSICOMPONENT *Component;
535     MSIPROGID *ProgID;
536     LPWSTR ProgIDText;
537     MSIMIME *Mime;
538     MSIFEATURE *Feature;
539     /* not in the table, set during installation */
540     BOOL Installed;
541     struct list verbs;
542 } MSIEXTENSION;
543
544 struct tagMSIPROGID
545 {
546     struct list entry;
547     LPWSTR ProgID;  /* Primary Key */
548     MSIPROGID *Parent;
549     MSICLASS *Class;
550     LPWSTR Description;
551     LPWSTR IconPath;
552     /* not in the table, set during installation */
553     BOOL InstallMe;
554     MSIPROGID *CurVer;
555     MSIPROGID *VersionInd;
556 };
557
558 typedef struct tagMSIVERB
559 {
560     struct list entry;
561     LPWSTR Verb;
562     INT Sequence;
563     LPWSTR Command;
564     LPWSTR Argument;
565 } MSIVERB;
566
567 struct tagMSIMIME
568 {
569     struct list entry;
570     LPWSTR ContentType;  /* Primary Key */
571     MSIEXTENSION *Extension;
572     LPWSTR suffix;
573     LPWSTR clsid;
574     MSICLASS *Class;
575     /* not in the table, set during installation */
576     BOOL InstallMe;
577 };
578
579 enum SCRIPTS {
580     INSTALL_SCRIPT = 0,
581     COMMIT_SCRIPT = 1,
582     ROLLBACK_SCRIPT = 2,
583     TOTAL_SCRIPTS = 3
584 };
585
586 #define SEQUENCE_UI       0x1
587 #define SEQUENCE_EXEC     0x2
588 #define SEQUENCE_INSTALL  0x10
589
590 typedef struct tagMSISCRIPT
591 {
592     LPWSTR  *Actions[TOTAL_SCRIPTS];
593     UINT    ActionCount[TOTAL_SCRIPTS];
594     BOOL    ExecuteSequenceRun;
595     BOOL    CurrentlyScripting;
596     UINT    InWhatSequence;
597     LPWSTR  *UniqueActions;
598     UINT    UniqueActionsCount;
599 } MSISCRIPT;
600
601 #define MSIHANDLETYPE_ANY 0
602 #define MSIHANDLETYPE_DATABASE 1
603 #define MSIHANDLETYPE_SUMMARYINFO 2
604 #define MSIHANDLETYPE_VIEW 3
605 #define MSIHANDLETYPE_RECORD 4
606 #define MSIHANDLETYPE_PACKAGE 5
607 #define MSIHANDLETYPE_PREVIEW 6
608
609 #define MSI_MAJORVERSION 4
610 #define MSI_MINORVERSION 5
611 #define MSI_BUILDNUMBER 6001
612
613 #define GUID_SIZE 39
614 #define SQUISH_GUID_SIZE 33
615
616 #define MSIHANDLE_MAGIC 0x4d434923
617
618 DEFINE_GUID(CLSID_IMsiServer,   0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
619 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
620 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
621 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
622
623 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
624
625 DEFINE_GUID(CLSID_IWineMsiRemoteCustomAction,0xBA26E6FA,0x4F27,0x4f56,0x95,0x3A,0x3F,0x90,0x27,0x20,0x18,0xAA);
626 DEFINE_GUID(CLSID_IWineMsiRemotePackage,0x902b3592,0x9d08,0x4dfd,0xa5,0x93,0xd0,0x7c,0x52,0x54,0x64,0x21);
627
628 DEFINE_GUID(CLSID_MsiTransform, 0x000c1082,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
629 DEFINE_GUID(CLSID_MsiDatabase,  0x000c1084,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
630 DEFINE_GUID(CLSID_MsiPatch,     0x000c1086,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
631
632 /* handle unicode/ascii output in the Msi* API functions */
633 typedef struct {
634     BOOL unicode;
635     union {
636        LPSTR a;
637        LPWSTR w;
638     } str;
639 } awstring;
640
641 typedef struct {
642     BOOL unicode;
643     union {
644        LPCSTR a;
645        LPCWSTR w;
646     } str;
647 } awcstring;
648
649 UINT msi_strcpy_to_awstring( LPCWSTR str, awstring *awbuf, DWORD *sz );
650
651 /* msi server interface */
652 extern ITypeLib *get_msi_typelib( LPWSTR *path );
653 extern HRESULT create_msi_custom_remote( IUnknown *pOuter, LPVOID *ppObj );
654 extern HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj );
655 extern HRESULT create_msi_remote_database( IUnknown *pOuter, LPVOID *ppObj );
656 extern IUnknown *msi_get_remote(MSIHANDLE handle);
657
658 /* handle functions */
659 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
660 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
661 extern MSIHANDLE alloc_msi_remote_handle( IUnknown *unk );
662 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
663 extern void msiobj_addref(MSIOBJECTHDR *);
664 extern int msiobj_release(MSIOBJECTHDR *);
665 extern void msiobj_lock(MSIOBJECTHDR *);
666 extern void msiobj_unlock(MSIOBJECTHDR *);
667 extern void msi_free_handle_table(void);
668
669 extern void free_cached_tables( MSIDATABASE *db );
670 extern UINT MSI_CommitTables( MSIDATABASE *db );
671
672
673 /* string table functions */
674 enum StringPersistence
675 {
676     StringPersistent = 0,
677     StringNonPersistent = 1
678 };
679
680 extern BOOL msi_addstringW( string_table *st, const WCHAR *data, int len, USHORT refcount, enum StringPersistence persistence );
681 extern UINT msi_string2idW( const string_table *st, LPCWSTR buffer, UINT *id );
682 extern VOID msi_destroy_stringtable( string_table *st );
683 extern const WCHAR *msi_string_lookup_id( const string_table *st, UINT id );
684 extern HRESULT msi_init_string_table( IStorage *stg );
685 extern string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref );
686 extern UINT msi_save_string_table( const string_table *st, IStorage *storage );
687
688 extern BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name );
689 extern MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table );
690
691 extern UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
692                               BYTE **pdata, UINT *psz );
693 extern UINT write_stream_data( IStorage *stg, LPCWSTR stname,
694                                LPCVOID data, UINT sz, BOOL bTable );
695
696 /* transform functions */
697 extern UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg );
698 extern UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
699                  LPCWSTR szTransformFile, int iErrorCond );
700 extern void append_storage_to_db( MSIDATABASE *db, IStorage *stg );
701
702 /* patch functions */
703 extern UINT msi_check_patch_applicable( MSIPACKAGE *package, MSISUMMARYINFO *si );
704 extern UINT msi_parse_patch_summary( MSISUMMARYINFO *si, MSIPATCHINFO **patch );
705 extern UINT msi_apply_patch_db( MSIPACKAGE *package, MSIDATABASE *patch_db, MSIPATCHINFO *patch );
706
707 /* action internals */
708 extern UINT MSI_InstallPackage( MSIPACKAGE *, LPCWSTR, LPCWSTR );
709 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
710 extern UINT ACTION_ForceReboot(MSIPACKAGE *package);
711 extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMode );
712 extern UINT MSI_SetFeatureStates( MSIPACKAGE *package );
713 extern UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine,
714                                     BOOL preserve_case );
715
716 /* record internals */
717 extern void MSI_CloseRecord( MSIOBJECTHDR * );
718 extern UINT MSI_RecordSetIStream( MSIRECORD *, UINT, IStream *);
719 extern UINT MSI_RecordGetIStream( MSIRECORD *, UINT, IStream **);
720 extern const WCHAR *MSI_RecordGetString( const MSIRECORD *, UINT );
721 extern MSIRECORD *MSI_CreateRecord( UINT );
722 extern UINT MSI_RecordSetInteger( MSIRECORD *, UINT, int );
723 extern UINT MSI_RecordSetIntPtr( MSIRECORD *, UINT, INT_PTR );
724 extern UINT MSI_RecordSetStringW( MSIRECORD *, UINT, LPCWSTR );
725 extern BOOL MSI_RecordIsNull( MSIRECORD *, UINT );
726 extern UINT MSI_RecordGetStringW( MSIRECORD * , UINT, LPWSTR, LPDWORD);
727 extern UINT MSI_RecordGetStringA( MSIRECORD *, UINT, LPSTR, LPDWORD);
728 extern int MSI_RecordGetInteger( MSIRECORD *, UINT );
729 extern INT_PTR MSI_RecordGetIntPtr( MSIRECORD *, UINT );
730 extern UINT MSI_RecordReadStream( MSIRECORD *, UINT, char *, LPDWORD);
731 extern UINT MSI_RecordSetStream(MSIRECORD *, UINT, IStream *);
732 extern UINT MSI_RecordGetFieldCount( const MSIRECORD *rec );
733 extern UINT MSI_RecordStreamToFile( MSIRECORD *, UINT, LPCWSTR );
734 extern UINT MSI_RecordSetStreamFromFileW( MSIRECORD *, UINT, LPCWSTR );
735 extern UINT MSI_RecordCopyField( MSIRECORD *, UINT, MSIRECORD *, UINT );
736 extern MSIRECORD *MSI_CloneRecord( MSIRECORD * );
737 extern BOOL MSI_RecordsAreEqual( MSIRECORD *, MSIRECORD * );
738
739 /* stream internals */
740 extern void enum_stream_names( IStorage *stg );
741 extern LPWSTR encode_streamname(BOOL bTable, LPCWSTR in);
742 extern BOOL decode_streamname(LPCWSTR in, LPWSTR out);
743
744 /* database internals */
745 extern UINT db_get_raw_stream( MSIDATABASE *, LPCWSTR, IStream ** );
746 void db_destroy_stream( MSIDATABASE *, LPCWSTR );
747 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
748 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
749 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
750 typedef UINT (*record_func)( MSIRECORD *, LPVOID );
751 extern UINT MSI_IterateRecords( MSIQUERY *, LPDWORD, record_func, LPVOID );
752 extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
753 extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
754
755 /* view internals */
756 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
757 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
758 extern UINT MSI_ViewClose( MSIQUERY* );
759 extern UINT MSI_ViewGetColumnInfo(MSIQUERY *, MSICOLINFO, MSIRECORD **);
760 extern UINT MSI_ViewModify( MSIQUERY *, MSIMODIFY, MSIRECORD * );
761 extern UINT VIEW_find_column( MSIVIEW *, LPCWSTR, LPCWSTR, UINT * );
762 extern UINT msi_view_get_row(MSIDATABASE *, MSIVIEW *, UINT, MSIRECORD **);
763
764 /* install internals */
765 extern UINT MSI_SetInstallLevel( MSIPACKAGE *package, int iInstallLevel );
766
767 /* package internals */
768 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *, LPCWSTR );
769 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE **pPackage );
770 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
771 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
772 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
773 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
774 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
775 extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
776 extern UINT msi_download_file( LPCWSTR szUrl, LPWSTR filename );
777 extern UINT msi_package_add_info(MSIPACKAGE *, DWORD, DWORD, LPCWSTR, LPWSTR);
778 extern UINT msi_package_add_media_disk(MSIPACKAGE *, DWORD, DWORD, DWORD, LPWSTR, LPWSTR);
779 extern UINT msi_clone_properties(MSIPACKAGE *);
780 extern UINT msi_set_context(MSIPACKAGE *);
781 extern void msi_adjust_privilege_properties(MSIPACKAGE *);
782 extern UINT MSI_GetFeatureCost(MSIPACKAGE *, MSIFEATURE *, MSICOSTTREE, INSTALLSTATE, LPINT);
783
784 /* for deformating */
785 extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, LPDWORD );
786
787 /* registry data encoding/decoding functions */
788 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
789 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
790 extern BOOL encode_base85_guid(GUID *,LPWSTR);
791 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
792 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
793 extern UINT MSIREG_DeleteUninstallKey(LPCWSTR szProduct);
794 extern UINT MSIREG_OpenProductKey(LPCWSTR szProduct, LPCWSTR szUserSid,
795                                   MSIINSTALLCONTEXT context, HKEY* key, BOOL create);
796 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
797                                    HKEY *key, BOOL create);
798 extern UINT MSIREG_OpenUserPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
799 UINT MSIREG_OpenUserDataFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
800                                     HKEY *key, BOOL create);
801 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
802 extern UINT MSIREG_OpenUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid,
803                                             HKEY *key, BOOL create);
804 extern UINT MSIREG_OpenPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
805 extern UINT MSIREG_OpenUserDataProductKey(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
806                                           LPCWSTR szUserSid, HKEY *key, BOOL create);
807 extern UINT MSIREG_OpenUserDataPatchKey(LPCWSTR szPatch, MSIINSTALLCONTEXT dwContext,
808                                         HKEY *key, BOOL create);
809 extern UINT MSIREG_OpenUserDataProductPatchesKey(LPCWSTR product, MSIINSTALLCONTEXT context,
810                                                  HKEY *key, BOOL create);
811 extern UINT MSIREG_OpenInstallProps(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
812                                     LPCWSTR szUserSid, HKEY *key, BOOL create);
813 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
814 extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
815 extern UINT MSIREG_DeleteProductKey(LPCWSTR szProduct);
816 extern UINT MSIREG_DeleteUserProductKey(LPCWSTR szProduct);
817 extern UINT MSIREG_DeleteUserDataPatchKey(LPCWSTR patch, MSIINSTALLCONTEXT context);
818 extern UINT MSIREG_DeleteUserDataProductKey(LPCWSTR szProduct);
819 extern UINT MSIREG_DeleteUserFeaturesKey(LPCWSTR szProduct);
820 extern UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid);
821 extern UINT MSIREG_DeleteUserUpgradeCodesKey(LPCWSTR szUpgradeCode);
822 extern UINT MSIREG_OpenClassesUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create);
823 extern UINT MSIREG_DeleteLocalClassesProductKey(LPCWSTR szProductCode);
824 extern UINT MSIREG_DeleteLocalClassesFeaturesKey(LPCWSTR szProductCode);
825
826 extern LPWSTR msi_reg_get_val_str( HKEY hkey, LPCWSTR name );
827 extern BOOL msi_reg_get_val_dword( HKEY hkey, LPCWSTR name, DWORD *val);
828
829 extern DWORD msi_version_str_to_dword(LPCWSTR p);
830 extern void msi_parse_version_string(LPCWSTR, PDWORD, PDWORD);
831 extern VS_FIXEDFILEINFO *msi_get_disk_file_version(LPCWSTR);
832 extern int msi_compare_file_versions(VS_FIXEDFILEINFO *, const WCHAR *);
833
834
835 extern LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
836 extern LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
837 extern LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val );
838 extern LONG msi_reg_set_subkey_val( HKEY hkey, LPCWSTR path, LPCWSTR name, LPCWSTR val );
839
840 /* msi dialog interface */
841 typedef UINT (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
842 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog*, msi_dialog_event_handler );
843 extern UINT msi_dialog_run_message_loop( msi_dialog* );
844 extern void msi_dialog_end_dialog( msi_dialog* );
845 extern void msi_dialog_check_messages( HANDLE );
846 extern void msi_dialog_do_preview( msi_dialog* );
847 extern void msi_dialog_destroy( msi_dialog* );
848 extern void msi_dialog_unregister_class( void );
849 extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
850 extern UINT msi_dialog_reset( msi_dialog *dialog );
851 extern UINT msi_dialog_directorylist_up( msi_dialog *dialog );
852 extern msi_dialog *msi_dialog_get_parent( msi_dialog *dialog );
853 extern LPWSTR msi_dialog_get_name( msi_dialog *dialog );
854 extern UINT msi_spawn_error_dialog( MSIPACKAGE*, LPWSTR, LPWSTR );
855
856 /* summary information */
857 extern MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount );
858 extern LPWSTR msi_suminfo_dup_string( MSISUMMARYINFO *si, UINT uiProperty );
859 extern LPWSTR msi_get_suminfo_product( IStorage *stg );
860 extern UINT msi_add_suminfo( MSIDATABASE *db, LPWSTR **records, int num_records, int num_columns );
861
862 /* undocumented functions */
863 UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
864 UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, LPDWORD );
865 UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, LPDWORD );
866 LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
867 LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
868
869 /* UI globals */
870 extern INSTALLUILEVEL gUILevel;
871 extern HWND gUIhwnd;
872 extern INSTALLUI_HANDLERA gUIHandlerA;
873 extern INSTALLUI_HANDLERW gUIHandlerW;
874 extern INSTALLUI_HANDLER_RECORD gUIHandlerRecord;
875 extern DWORD gUIFilter;
876 extern LPVOID gUIContext;
877 extern WCHAR gszLogFile[MAX_PATH];
878 extern HINSTANCE msi_hInstance;
879
880 /* action related functions */
881 extern UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, UINT script);
882 extern UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action, UINT script);
883 extern void ACTION_FinishCustomActions( const MSIPACKAGE* package);
884 extern UINT ACTION_CustomAction(MSIPACKAGE *package,const WCHAR *action, UINT script, BOOL execute);
885
886 static inline void msi_feature_set_state(MSIPACKAGE *package,
887                                          MSIFEATURE *feature,
888                                          INSTALLSTATE state)
889 {
890     if (!package->ProductCode)
891     {
892         feature->ActionRequest = state;
893         feature->Action = state;
894     }
895     else if (state == INSTALLSTATE_ABSENT)
896     {
897         switch (feature->Installed)
898         {
899             case INSTALLSTATE_ABSENT:
900                 feature->ActionRequest = INSTALLSTATE_UNKNOWN;
901                 feature->Action = INSTALLSTATE_UNKNOWN;
902                 break;
903             default:
904                 feature->ActionRequest = state;
905                 feature->Action = state;
906         }
907     }
908     else if (state == INSTALLSTATE_SOURCE)
909     {
910         switch (feature->Installed)
911         {
912             case INSTALLSTATE_ABSENT:
913             case INSTALLSTATE_SOURCE:
914                 feature->ActionRequest = state;
915                 feature->Action = state;
916                 break;
917             case INSTALLSTATE_LOCAL:
918                 feature->ActionRequest = INSTALLSTATE_LOCAL;
919                 feature->Action = INSTALLSTATE_LOCAL;
920                 break;
921             default:
922                 feature->ActionRequest = INSTALLSTATE_UNKNOWN;
923                 feature->Action = INSTALLSTATE_UNKNOWN;
924         }
925     }
926     else
927     {
928         feature->ActionRequest = state;
929         feature->Action = state;
930     }
931 }
932
933 static inline void msi_component_set_state(MSIPACKAGE *package,
934                                            MSICOMPONENT *comp,
935                                            INSTALLSTATE state)
936 {
937     if (!package->ProductCode)
938     {
939         comp->ActionRequest = state;
940         comp->Action = state;
941     }
942     else if (state == INSTALLSTATE_ABSENT)
943     {
944         switch (comp->Installed)
945         {
946             case INSTALLSTATE_LOCAL:
947             case INSTALLSTATE_SOURCE:
948             case INSTALLSTATE_DEFAULT:
949                 comp->ActionRequest = state;
950                 comp->Action = state;
951                 break;
952             default:
953                 comp->ActionRequest = INSTALLSTATE_UNKNOWN;
954                 comp->Action = INSTALLSTATE_UNKNOWN;
955         }
956     }
957     else if (state == INSTALLSTATE_SOURCE)
958     {
959         if (comp->Installed == INSTALLSTATE_ABSENT ||
960             (comp->Installed == INSTALLSTATE_SOURCE && comp->hasLocalFeature))
961         {
962             comp->ActionRequest = state;
963             comp->Action = state;
964         }
965         else
966         {
967             comp->ActionRequest = INSTALLSTATE_UNKNOWN;
968             comp->Action = INSTALLSTATE_UNKNOWN;
969         }
970     }
971     else
972     {
973         comp->ActionRequest = state;
974         comp->Action = state;
975     }
976 }
977
978 /* actions in other modules */
979 extern UINT ACTION_AppSearch(MSIPACKAGE *package);
980 extern UINT ACTION_CCPSearch(MSIPACKAGE *package);
981 extern UINT ACTION_FindRelatedProducts(MSIPACKAGE *package);
982 extern UINT ACTION_InstallFiles(MSIPACKAGE *package);
983 extern UINT ACTION_RemoveFiles(MSIPACKAGE *package);
984 extern UINT ACTION_MoveFiles(MSIPACKAGE *package);
985 extern UINT ACTION_DuplicateFiles(MSIPACKAGE *package);
986 extern UINT ACTION_RemoveDuplicateFiles(MSIPACKAGE *package);
987 extern UINT ACTION_RegisterClassInfo(MSIPACKAGE *package);
988 extern UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package);
989 extern UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package);
990 extern UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package);
991 extern UINT ACTION_RegisterFonts(MSIPACKAGE *package);
992 extern UINT ACTION_UnregisterClassInfo(MSIPACKAGE *package);
993 extern UINT ACTION_UnregisterExtensionInfo(MSIPACKAGE *package);
994 extern UINT ACTION_UnregisterFonts(MSIPACKAGE *package);
995 extern UINT ACTION_UnregisterMIMEInfo(MSIPACKAGE *package);
996 extern UINT ACTION_UnregisterProgIdInfo(MSIPACKAGE *package);
997
998 /* Helpers */
999 extern DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data );
1000 extern LPWSTR msi_dup_record_field(MSIRECORD *row, INT index);
1001 extern LPWSTR msi_dup_property( MSIDATABASE *db, LPCWSTR prop );
1002 extern UINT msi_set_property( MSIDATABASE *, LPCWSTR, LPCWSTR );
1003 extern UINT msi_get_property( MSIDATABASE *, LPCWSTR, LPWSTR, LPDWORD );
1004 extern int msi_get_property_int( MSIDATABASE *package, LPCWSTR prop, int def );
1005 extern LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
1006                       BOOL set_prop, BOOL load_prop, MSIFOLDER **folder);
1007 extern LPWSTR resolve_file_source(MSIPACKAGE *package, MSIFILE *file);
1008 extern void msi_reset_folders( MSIPACKAGE *package, BOOL source );
1009 extern MSICOMPONENT *get_loaded_component( MSIPACKAGE* package, LPCWSTR Component );
1010 extern MSIFEATURE *get_loaded_feature( MSIPACKAGE* package, LPCWSTR Feature );
1011 extern MSIFILE *get_loaded_file( MSIPACKAGE* package, LPCWSTR file );
1012 extern MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir );
1013 extern int track_tempfile(MSIPACKAGE *package, LPCWSTR path);
1014 extern UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action);
1015 extern void msi_free_action_script(MSIPACKAGE *package, UINT script);
1016 extern LPWSTR build_icon_path(MSIPACKAGE *, LPCWSTR);
1017 extern LPWSTR build_directory_name(DWORD , ...);
1018 extern BOOL create_full_pathW(const WCHAR *path);
1019 extern void reduce_to_longfilename(WCHAR*);
1020 extern LPWSTR create_component_advertise_string(MSIPACKAGE*, MSICOMPONENT*, LPCWSTR);
1021 extern void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature);
1022 extern UINT register_unique_action(MSIPACKAGE *, LPCWSTR);
1023 extern BOOL check_unique_action(const MSIPACKAGE *, LPCWSTR);
1024 extern WCHAR* generate_error_string(MSIPACKAGE *, UINT, DWORD, ... );
1025 extern UINT msi_set_last_used_source(LPCWSTR product, LPCWSTR usersid,
1026                         MSIINSTALLCONTEXT context, DWORD options, LPCWSTR value);
1027 extern UINT msi_get_local_package_name(LPWSTR path, LPCWSTR suffix);
1028 extern UINT msi_set_sourcedir_props(MSIPACKAGE *package, BOOL replace);
1029
1030 /* media */
1031
1032 typedef BOOL (*PMSICABEXTRACTCB)(MSIPACKAGE *, LPCWSTR, DWORD, LPWSTR *, DWORD *, PVOID);
1033
1034 #define MSICABEXTRACT_BEGINEXTRACT  0x01
1035 #define MSICABEXTRACT_FILEEXTRACTED 0x02
1036
1037 typedef struct
1038 {
1039     MSIPACKAGE* package;
1040     MSIMEDIAINFO *mi;
1041     PMSICABEXTRACTCB cb;
1042     LPWSTR curfile;
1043     PVOID user;
1044 } MSICABDATA;
1045
1046 extern UINT ready_media(MSIPACKAGE *package, MSIFILE *file, MSIMEDIAINFO *mi);
1047 extern void msi_free_media_info(MSIMEDIAINFO *mi);
1048 extern BOOL msi_cabextract(MSIPACKAGE* package, MSIMEDIAINFO *mi, LPVOID data);
1049
1050 /* control event stuff */
1051 extern VOID ControlEvent_FireSubscribedEvent(MSIPACKAGE *package, LPCWSTR event,
1052                                       MSIRECORD *data);
1053 extern VOID ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE *package, LPWSTR dialog);
1054 extern VOID ControlEvent_CleanupSubscriptions(MSIPACKAGE *package);
1055 extern VOID ControlEvent_SubscribeToEvent(MSIPACKAGE *package, msi_dialog *dialog,
1056                                       LPCWSTR event, LPCWSTR control, LPCWSTR attribute);
1057
1058 /* OLE automation */
1059 extern HRESULT create_msiserver(IUnknown *pOuter, LPVOID *ppObj);
1060 extern HRESULT create_session(MSIHANDLE msiHandle, IDispatch *pInstaller, IDispatch **pDispatch);
1061 extern HRESULT load_type_info(IDispatch *iface, ITypeInfo **pptinfo, REFIID clsid, LCID lcid);
1062
1063 /* Scripting */
1064 extern DWORD call_script(MSIHANDLE hPackage, INT type, LPCWSTR script, LPCWSTR function, LPCWSTR action);
1065
1066 /* User Interface messages from the actions */
1067 extern void ui_progress(MSIPACKAGE *, int, int, int, int);
1068 extern void ui_actiondata(MSIPACKAGE *, LPCWSTR, MSIRECORD *);
1069
1070 /* common strings */
1071 static const WCHAR cszSourceDir[] = {'S','o','u','r','c','e','D','i','r',0};
1072 static const WCHAR cszSOURCEDIR[] = {'S','O','U','R','C','E','D','I','R',0};
1073 static const WCHAR cszRootDrive[] = {'R','O','O','T','D','R','I','V','E',0};
1074 static const WCHAR szLocalSid[] = {'S','-','1','-','5','-','1','8',0};
1075 static const WCHAR szEmpty[] = {0};
1076 static const WCHAR szAll[] = {'A','L','L',0};
1077 static const WCHAR szOne[] = {'1',0};
1078 static const WCHAR szZero[] = {'0',0};
1079 static const WCHAR szSpace[] = {' ',0};
1080 static const WCHAR szBackSlash[] = {'\\',0};
1081 static const WCHAR szForwardSlash[] = {'/',0};
1082 static const WCHAR szDot[] = {'.',0};
1083 static const WCHAR szDotDot[] = {'.','.',0};
1084 static const WCHAR szSemiColon[] = {';',0};
1085 static const WCHAR szPreselected[] = {'P','r','e','s','e','l','e','c','t','e','d',0};
1086 static const WCHAR szPatches[] = {'P','a','t','c','h','e','s',0};
1087 static const WCHAR szState[] = {'S','t','a','t','e',0};
1088 static const WCHAR szMsi[] = {'m','s','i',0};
1089 static const WCHAR szPatch[] = {'P','A','T','C','H',0};
1090 static const WCHAR szSourceList[] = {'S','o','u','r','c','e','L','i','s','t',0};
1091 static const WCHAR szInstalled[] = {'I','n','s','t','a','l','l','e','d',0};
1092 static const WCHAR szReinstall[] = {'R','E','I','N','S','T','A','L','L',0};
1093 static const WCHAR szReinstallMode[] = {'R','E','I','N','S','T','A','L','L','M','O','D','E',0};
1094 static const WCHAR szRemove[] = {'R','E','M','O','V','E',0};
1095 static const WCHAR szUserSID[] = {'U','s','e','r','S','I','D',0};
1096 static const WCHAR szProductCode[] = {'P','r','o','d','u','c','t','C','o','d','e',0};
1097 static const WCHAR szRegisterClassInfo[] = {'R','e','g','i','s','t','e','r','C','l','a','s','s','I','n','f','o',0};
1098 static const WCHAR szRegisterProgIdInfo[] = {'R','e','g','i','s','t','e','r','P','r','o','g','I','d','I','n','f','o',0};
1099 static const WCHAR szRegisterExtensionInfo[] = {'R','e','g','i','s','t','e','r','E','x','t','e','n','s','i','o','n','I','n','f','o',0};
1100 static const WCHAR szRegisterMIMEInfo[] = {'R','e','g','i','s','t','e','r','M','I','M','E','I','n','f','o',0};
1101 static const WCHAR szDuplicateFiles[] = {'D','u','p','l','i','c','a','t','e','F','i','l','e','s',0};
1102 static const WCHAR szRemoveDuplicateFiles[] = {'R','e','m','o','v','e','D','u','p','l','i','c','a','t','e','F','i','l','e','s',0};
1103 static const WCHAR szInstallFiles[] = {'I','n','s','t','a','l','l','F','i','l','e','s',0};
1104 static const WCHAR szRemoveFiles[] = {'R','e','m','o','v','e','F','i','l','e','s',0};
1105 static const WCHAR szFindRelatedProducts[] = {'F','i','n','d','R','e','l','a','t','e','d','P','r','o','d','u','c','t','s',0};
1106 static const WCHAR szAllUsers[] = {'A','L','L','U','S','E','R','S',0};
1107 static const WCHAR szCustomActionData[] = {'C','u','s','t','o','m','A','c','t','i','o','n','D','a','t','a',0};
1108 static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
1109 static const WCHAR szProductID[] = {'P','r','o','d','u','c','t','I','D',0};
1110 static const WCHAR szPIDTemplate[] = {'P','I','D','T','e','m','p','l','a','t','e',0};
1111 static const WCHAR szPIDKEY[] = {'P','I','D','K','E','Y',0};
1112 static const WCHAR szTYPELIB[] = {'T','Y','P','E','L','I','B',0};
1113 static const WCHAR szSumInfo[] = {5 ,'S','u','m','m','a','r','y','I','n','f','o','r','m','a','t','i','o','n',0};
1114 static const WCHAR szHCR[] = {'H','K','E','Y','_','C','L','A','S','S','E','S','_','R','O','O','T','\\',0};
1115 static const WCHAR szHCU[] = {'H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E','R','\\',0};
1116 static const WCHAR szHLM[] = {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\',0};
1117 static const WCHAR szHU[] = {'H','K','E','Y','_','U','S','E','R','S','\\',0};
1118 static const WCHAR szWindowsFolder[] = {'W','i','n','d','o','w','s','F','o','l','d','e','r',0};
1119 static const WCHAR szAppSearch[] = {'A','p','p','S','e','a','r','c','h',0};
1120 static const WCHAR szMoveFiles[] = {'M','o','v','e','F','i','l','e','s',0};
1121 static const WCHAR szCCPSearch[] = {'C','C','P','S','e','a','r','c','h',0};
1122 static const WCHAR szUnregisterClassInfo[] = {'U','n','r','e','g','i','s','t','e','r','C','l','a','s','s','I','n','f','o',0};
1123 static const WCHAR szUnregisterExtensionInfo[] = {'U','n','r','e','g','i','s','t','e','r','E','x','t','e','n','s','i','o','n','I','n','f','o',0};
1124 static const WCHAR szUnregisterMIMEInfo[] = {'U','n','r','e','g','i','s','t','e','r','M','I','M','E','I','n','f','o',0};
1125 static const WCHAR szUnregisterProgIdInfo[] = {'U','n','r','e','g','i','s','t','e','r','P','r','o','g','I','d','I','n','f','o',0};
1126 static const WCHAR szRegisterFonts[] = {'R','e','g','i','s','t','e','r','F','o','n','t','s',0};
1127 static const WCHAR szUnregisterFonts[] = {'U','n','r','e','g','i','s','t','e','r','F','o','n','t','s',0};
1128 static const WCHAR szCLSID[] = {'C','L','S','I','D',0};
1129 static const WCHAR szProgID[] = {'P','r','o','g','I','D',0};
1130 static const WCHAR szVIProgID[] = {'V','e','r','s','i','o','n','I','n','d','e','p','e','n','d','e','n','t','P','r','o','g','I','D',0};
1131 static const WCHAR szAppID[] = {'A','p','p','I','D',0};
1132 static const WCHAR szDefaultIcon[] = {'D','e','f','a','u','l','t','I','c','o','n',0};
1133 static const WCHAR szInprocHandler[] = {'I','n','p','r','o','c','H','a','n','d','l','e','r',0};
1134 static const WCHAR szInprocHandler32[] = {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
1135 static const WCHAR szMIMEDatabase[] = {'M','I','M','E','\\','D','a','t','a','b','a','s','e','\\','C','o','n','t','e','n','t',' ','T','y','p','e','\\',0};
1136 static const WCHAR szLocalPackage[] = {'L','o','c','a','l','P','a','c','k','a','g','e',0};
1137 static const WCHAR szOriginalDatabase[] = {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0};
1138 static const WCHAR szUpgradeCode[] = {'U','p','g','r','a','d','e','C','o','d','e',0};
1139 static const WCHAR szAdminUser[] = {'A','d','m','i','n','U','s','e','r',0};
1140 static const WCHAR szIntel[] = {'I','n','t','e','l',0};
1141 static const WCHAR szIntel64[] = {'I','n','t','e','l','6','4',0};
1142 static const WCHAR szX64[] = {'x','6','4',0};
1143
1144 /* memory allocation macro functions */
1145 static void *msi_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
1146 static inline void *msi_alloc( size_t len )
1147 {
1148     return HeapAlloc( GetProcessHeap(), 0, len );
1149 }
1150
1151 static void *msi_alloc_zero( size_t len ) __WINE_ALLOC_SIZE(1);
1152 static inline void *msi_alloc_zero( size_t len )
1153 {
1154     return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
1155 }
1156
1157 static void *msi_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
1158 static inline void *msi_realloc( void *mem, size_t len )
1159 {
1160     return HeapReAlloc( GetProcessHeap(), 0, mem, len );
1161 }
1162
1163 static void *msi_realloc_zero( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
1164 static inline void *msi_realloc_zero( void *mem, size_t len )
1165 {
1166     return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len );
1167 }
1168
1169 static inline BOOL msi_free( void *mem )
1170 {
1171     return HeapFree( GetProcessHeap(), 0, mem );
1172 }
1173
1174 static inline char *strdupWtoA( LPCWSTR str )
1175 {
1176     LPSTR ret = NULL;
1177     DWORD len;
1178
1179     if (!str) return ret;
1180     len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1181     ret = msi_alloc( len );
1182     if (ret)
1183         WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
1184     return ret;
1185 }
1186
1187 static inline LPWSTR strdupAtoW( LPCSTR str )
1188 {
1189     LPWSTR ret = NULL;
1190     DWORD len;
1191
1192     if (!str) return ret;
1193     len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
1194     ret = msi_alloc( len * sizeof(WCHAR) );
1195     if (ret)
1196         MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
1197     return ret;
1198 }
1199
1200 static inline LPWSTR strdupW( LPCWSTR src )
1201 {
1202     LPWSTR dest;
1203     if (!src) return NULL;
1204     dest = msi_alloc( (lstrlenW(src)+1)*sizeof(WCHAR) );
1205     if (dest)
1206         lstrcpyW(dest, src);
1207     return dest;
1208 }
1209
1210 #endif /* __WINE_MSI_PRIVATE__ */