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