2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002-2005 Mike McCormack for CodeWeavers
5 * Copyright 2005 Aric Stewart for CodeWeavers
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.
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.
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
22 #ifndef __WINE_MSI_PRIVATE__
23 #define __WINE_MSI_PRIVATE__
35 #include "wine/list.h"
36 #include "wine/debug.h"
38 #define MSI_DATASIZEMASK 0x00ff
39 #define MSITYPE_VALID 0x0100
40 #define MSITYPE_LOCALIZABLE 0x200
41 #define MSITYPE_STRING 0x0800
42 #define MSITYPE_NULLABLE 0x1000
43 #define MSITYPE_KEY 0x2000
44 #define MSITYPE_TEMPORARY 0x4000
47 /* Install UI level mask for AND operation to exclude flags */
48 #define INSTALLUILEVEL_MASK 0x0007
50 #define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
53 typedef struct tagMSITABLE MSITABLE;
56 typedef struct string_table string_table;
58 struct tagMSIOBJECTHDR;
59 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
61 typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
63 struct tagMSIOBJECTHDR
68 msihandledestructor destructor;
71 typedef struct tagMSIDATABASE
75 string_table *strings;
76 UINT bytes_per_strref;
81 struct list transforms;
84 typedef struct tagMSIVIEW MSIVIEW;
86 typedef struct tagMSIQUERY
95 /* maybe we can use a Variant instead of doing it ourselves? */
96 typedef struct tagMSIFIELD
107 typedef struct tagMSIRECORD
110 UINT count; /* as passed to MsiCreateRecord */
111 MSIFIELD fields[1]; /* nb. array size is count+1 */
114 typedef struct tagMSISOURCELISTINFO
123 typedef struct tagMSIMEDIADISK
133 typedef struct tagMSIMEDIAINFO
144 WCHAR source[MAX_PATH];
147 typedef struct tagMSIPATCHINFO
153 typedef struct _column_info
160 struct _column_info *next;
163 typedef const struct tagMSICOLUMNHASHENTRY *MSIITERHANDLE;
165 typedef struct tagMSIVIEWOPS
168 * fetch_int - reads one integer from {row,col} in the table
170 * This function should be called after the execute method.
171 * Data returned by the function should not change until
172 * close or delete is called.
173 * To get a string value, query the database's string table with
174 * the integer value returned from this function.
176 UINT (*fetch_int)( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val );
179 * fetch_stream - gets a stream from {row,col} in the table
181 * This function is similar to fetch_int, except fetches a
182 * stream instead of an integer.
184 UINT (*fetch_stream)( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm );
187 * get_row - gets values from a row
190 UINT (*get_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec );
193 * set_row - sets values in a row as specified by mask
195 * Similar semantics to fetch_int
197 UINT (*set_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask );
200 * Inserts a new row into the database from the records contents
202 UINT (*insert_row)( struct tagMSIVIEW *view, MSIRECORD *record, UINT row, BOOL temporary );
205 * Deletes a row from the database
207 UINT (*delete_row)( struct tagMSIVIEW *view, UINT row );
210 * execute - loads the underlying data into memory so it can be read
212 UINT (*execute)( struct tagMSIVIEW *view, MSIRECORD *record );
215 * close - clears the data read by execute from memory
217 UINT (*close)( struct tagMSIVIEW *view );
220 * get_dimensions - returns the number of rows or columns in a table.
222 * The number of rows can only be queried after the execute method
223 * is called. The number of columns can be queried at any time.
225 UINT (*get_dimensions)( struct tagMSIVIEW *view, UINT *rows, UINT *cols );
228 * get_column_info - returns the name and type of a specific column
230 * The name is HeapAlloc'ed by this function and should be freed by
232 * The column information can be queried at any time.
234 UINT (*get_column_info)( struct tagMSIVIEW *view, UINT n, LPWSTR *name, UINT *type, BOOL *temporary );
237 * modify - not yet implemented properly
239 UINT (*modify)( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *record, UINT row );
242 * delete - destroys the structure completely
244 UINT (*delete)( struct tagMSIVIEW * );
247 * find_matching_rows - iterates through rows that match a value
249 * If the column type is a string then a string ID should be passed in.
250 * If the value to be looked up is an integer then no transformation of
251 * the input value is required, except if the column is a string, in which
252 * case a string ID should be passed in.
253 * The handle is an input/output parameter that keeps track of the current
254 * position in the iteration. It must be initialised to zero before the
255 * first call and continued to be passed in to subsequent calls.
257 UINT (*find_matching_rows)( struct tagMSIVIEW *view, UINT col, UINT val, UINT *row, MSIITERHANDLE *handle );
260 * add_ref - increases the reference count of the table
262 UINT (*add_ref)( struct tagMSIVIEW *view );
265 * release - decreases the reference count of the table
267 UINT (*release)( struct tagMSIVIEW *view );
270 * add_column - adds a column to the table
272 UINT (*add_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number, LPCWSTR column, UINT type, BOOL hold );
275 * remove_column - removes the column represented by table name and column number from the table
277 UINT (*remove_column)( struct tagMSIVIEW *view, LPCWSTR table, UINT number );
280 * sort - orders the table by columns
282 UINT (*sort)( struct tagMSIVIEW *view, column_info *columns );
285 * drop - drops the table from the database
287 UINT (*drop)( struct tagMSIVIEW *view );
293 const MSIVIEWOPS *ops;
296 struct msi_dialog_tag;
297 typedef struct msi_dialog_tag msi_dialog;
299 typedef struct tagMSIPACKAGE
304 struct list components;
305 struct list features;
307 struct list tempfiles;
313 struct list extensions;
318 struct tagMSISCRIPT *script;
320 struct list RunningActions;
326 UINT CurrentInstallState;
335 struct list subscriptions;
337 struct list sourcelist_info;
338 struct list sourcelist_media;
340 unsigned char scheduled_action_running : 1;
341 unsigned char commit_action_running : 1;
342 unsigned char rollback_action_running : 1;
343 unsigned char need_reboot : 1;
346 typedef struct tagMSIPREVIEW
353 #define MSI_MAX_PROPS 20
355 typedef struct tagMSISUMMARYINFO
360 PROPVARIANT property[MSI_MAX_PROPS];
363 typedef struct tagMSIFEATURE
367 LPWSTR Feature_Parent;
374 INSTALLSTATE Installed;
375 INSTALLSTATE ActionRequest;
377 struct list Children;
378 struct list Components;
382 typedef struct tagMSICOMPONENT
392 INSTALLSTATE Installed;
393 INSTALLSTATE ActionRequest;
395 BOOL ForceLocalState;
400 LPWSTR AdvertiseString;
402 unsigned int anyAbsent:1;
403 unsigned int hasAdvertiseFeature:1;
404 unsigned int hasLocalFeature:1;
405 unsigned int hasSourceFeature:1;
408 typedef struct tagComponentList
411 MSICOMPONENT *component;
414 typedef struct tagFeatureList
420 typedef struct tagMSIFOLDER
425 LPWSTR TargetDefault;
426 LPWSTR SourceLongPath;
427 LPWSTR SourceShortPath;
429 LPWSTR ResolvedTarget;
430 LPWSTR ResolvedSource;
431 LPWSTR Property; /* initially set property */
433 /* 0 = uninitialized */
435 /* 2 = created remove if empty */
436 /* 3 = created persist if empty */
441 typedef enum _msi_file_state {
450 typedef struct tagMSIFILE
454 MSICOMPONENT *Component;
463 msi_file_state state;
466 MSIFILEHASHINFO hash;
469 typedef struct tagMSITEMPFILE
475 typedef struct tagMSIAPPID
478 LPWSTR AppID; /* Primary key */
479 LPWSTR RemoteServerName;
481 LPWSTR ServiceParameters;
483 BOOL ActivateAtStorage;
484 BOOL RunAsInteractiveUser;
487 typedef struct tagMSIPROGID MSIPROGID;
489 typedef struct tagMSICLASS
492 LPWSTR clsid; /* Primary Key */
493 LPWSTR Context; /* Primary Key */
494 MSICOMPONENT *Component;
501 LPWSTR DefInprocHandler;
502 LPWSTR DefInprocHandler32;
506 /* not in the table, set during installation */
510 typedef struct tagMSIMIME MSIMIME;
512 typedef struct tagMSIEXTENSION
515 LPWSTR Extension; /* Primary Key */
516 MSICOMPONENT *Component;
521 /* not in the table, set during installation */
529 LPWSTR ProgID; /* Primary Key */
534 /* not in the table, set during installation */
537 MSIPROGID *VersionInd;
540 typedef struct tagMSIVERB
552 LPWSTR ContentType; /* Primary Key */
553 MSIEXTENSION *Extension;
556 /* not in the table, set during installation */
567 #define SEQUENCE_UI 0x1
568 #define SEQUENCE_EXEC 0x2
569 #define SEQUENCE_INSTALL 0x10
571 typedef struct tagMSISCRIPT
573 LPWSTR *Actions[TOTAL_SCRIPTS];
574 UINT ActionCount[TOTAL_SCRIPTS];
575 BOOL ExecuteSequenceRun;
576 BOOL CurrentlyScripting;
578 LPWSTR *UniqueActions;
579 UINT UniqueActionsCount;
582 #define MSIHANDLETYPE_ANY 0
583 #define MSIHANDLETYPE_DATABASE 1
584 #define MSIHANDLETYPE_SUMMARYINFO 2
585 #define MSIHANDLETYPE_VIEW 3
586 #define MSIHANDLETYPE_RECORD 4
587 #define MSIHANDLETYPE_PACKAGE 5
588 #define MSIHANDLETYPE_PREVIEW 6
590 #define MSI_MAJORVERSION 3
591 #define MSI_MINORVERSION 1
592 #define MSI_BUILDNUMBER 4000
595 #define SQUISH_GUID_SIZE 33
597 #define MSIHANDLE_MAGIC 0x4d434923
599 DEFINE_GUID(CLSID_IMsiServer, 0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
600 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
601 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
602 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
604 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
606 DEFINE_GUID(CLSID_IWineMsiRemoteCustomAction,0xBA26E6FA,0x4F27,0x4f56,0x95,0x3A,0x3F,0x90,0x27,0x20,0x18,0xAA);
607 DEFINE_GUID(CLSID_IWineMsiRemotePackage,0x902b3592,0x9d08,0x4dfd,0xa5,0x93,0xd0,0x7c,0x52,0x54,0x64,0x21);
609 DEFINE_GUID(CLSID_MsiTransform, 0x000c1082,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
610 DEFINE_GUID(CLSID_MsiDatabase, 0x000c1084,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
611 DEFINE_GUID(CLSID_MsiPatch, 0x000c1086,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
613 /* handle unicode/ascii output in the Msi* API functions */
630 UINT msi_strcpy_to_awstring( LPCWSTR str, awstring *awbuf, DWORD *sz );
632 /* msi server interface */
633 extern ITypeLib *get_msi_typelib( LPWSTR *path );
634 extern HRESULT create_msi_custom_remote( IUnknown *pOuter, LPVOID *ppObj );
635 extern HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj );
636 extern HRESULT create_msi_remote_database( IUnknown *pOuter, LPVOID *ppObj );
637 extern IUnknown *msi_get_remote(MSIHANDLE handle);
639 /* handle functions */
640 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
641 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
642 extern MSIHANDLE alloc_msi_remote_handle( IUnknown *unk );
643 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
644 extern void msiobj_addref(MSIOBJECTHDR *);
645 extern int msiobj_release(MSIOBJECTHDR *);
646 extern void msiobj_lock(MSIOBJECTHDR *);
647 extern void msiobj_unlock(MSIOBJECTHDR *);
648 extern void msi_free_handle_table(void);
650 extern void free_cached_tables( MSIDATABASE *db );
651 extern void msi_free_transforms( MSIDATABASE *db );
652 extern UINT MSI_CommitTables( MSIDATABASE *db );
655 /* string table functions */
656 enum StringPersistence
658 StringPersistent = 0,
659 StringNonPersistent = 1
662 extern BOOL msi_addstringW( string_table *st, UINT string_no, const WCHAR *data, int len, UINT refcount, enum StringPersistence persistence );
664 extern UINT msi_string2idW( const string_table *st, LPCWSTR buffer, UINT *id );
665 extern VOID msi_destroy_stringtable( string_table *st );
666 extern const WCHAR *msi_string_lookup_id( const string_table *st, UINT id );
667 extern HRESULT msi_init_string_table( IStorage *stg );
668 extern string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref );
669 extern UINT msi_save_string_table( const string_table *st, IStorage *storage );
671 extern BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name );
672 extern MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table );
674 extern UINT read_raw_stream_data( MSIDATABASE *db, LPCWSTR stname,
675 USHORT **pdata, UINT *psz );
676 extern UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
677 BYTE **pdata, UINT *psz );
678 extern UINT write_stream_data( IStorage *stg, LPCWSTR stname,
679 LPCVOID data, UINT sz, BOOL bTable );
681 /* transform functions */
682 extern UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg );
683 extern UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
684 LPCWSTR szTransformFile, int iErrorCond );
685 extern void append_storage_to_db( MSIDATABASE *db, IStorage *stg );
687 extern UINT msi_check_patch_applicable( MSIPACKAGE *package, MSISUMMARYINFO *si );
689 /* action internals */
690 extern UINT MSI_InstallPackage( MSIPACKAGE *, LPCWSTR, LPCWSTR );
691 extern void ACTION_free_package_structures( MSIPACKAGE* );
692 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
693 extern UINT ACTION_ForceReboot(MSIPACKAGE *package);
694 extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMode );
695 extern UINT MSI_SetFeatureStates( MSIPACKAGE *package );
696 extern UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine,
697 BOOL preserve_case );
699 /* record internals */
700 extern UINT MSI_RecordSetIStream( MSIRECORD *, UINT, IStream *);
701 extern UINT MSI_RecordGetIStream( MSIRECORD *, UINT, IStream **);
702 extern const WCHAR *MSI_RecordGetString( const MSIRECORD *, UINT );
703 extern MSIRECORD *MSI_CreateRecord( UINT );
704 extern UINT MSI_RecordSetInteger( MSIRECORD *, UINT, int );
705 extern UINT MSI_RecordSetStringW( MSIRECORD *, UINT, LPCWSTR );
706 extern BOOL MSI_RecordIsNull( MSIRECORD *, UINT );
707 extern UINT MSI_RecordGetStringW( MSIRECORD * , UINT, LPWSTR, LPDWORD);
708 extern UINT MSI_RecordGetStringA( MSIRECORD *, UINT, LPSTR, LPDWORD);
709 extern int MSI_RecordGetInteger( MSIRECORD *, UINT );
710 extern UINT MSI_RecordReadStream( MSIRECORD *, UINT, char *, LPDWORD);
711 extern UINT MSI_RecordSetStream(MSIRECORD *, UINT, IStream *);
712 extern UINT MSI_RecordGetFieldCount( const MSIRECORD *rec );
713 extern UINT MSI_RecordStreamToFile( MSIRECORD *, UINT, LPCWSTR );
714 extern UINT MSI_RecordSetStreamFromFileW( MSIRECORD *, UINT, LPCWSTR );
715 extern UINT MSI_RecordCopyField( MSIRECORD *, UINT, MSIRECORD *, UINT );
716 extern MSIRECORD *MSI_CloneRecord( MSIRECORD * );
717 extern BOOL MSI_RecordsAreEqual( MSIRECORD *, MSIRECORD * );
719 /* stream internals */
720 extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
721 extern void enum_stream_names( IStorage *stg );
722 extern BOOL decode_streamname(LPCWSTR in, LPWSTR out);
724 /* database internals */
725 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
726 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
727 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
728 typedef UINT (*record_func)( MSIRECORD *, LPVOID );
729 extern UINT MSI_IterateRecords( MSIQUERY *, LPDWORD, record_func, LPVOID );
730 extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
731 extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
734 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
735 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
736 extern UINT MSI_ViewClose( MSIQUERY* );
737 extern UINT MSI_ViewGetColumnInfo(MSIQUERY *, MSICOLINFO, MSIRECORD **);
738 extern UINT MSI_ViewModify( MSIQUERY *, MSIMODIFY, MSIRECORD * );
739 extern UINT VIEW_find_column( MSIVIEW *, LPCWSTR, UINT * );
740 extern UINT msi_view_get_row(MSIDATABASE *, MSIVIEW *, UINT, MSIRECORD **);
742 /* install internals */
743 extern UINT MSI_SetInstallLevel( MSIPACKAGE *package, int iInstallLevel );
745 /* package internals */
746 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *, LPCWSTR );
747 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE **pPackage );
748 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
749 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
750 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
751 extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, LPDWORD );
752 extern UINT MSI_GetPropertyA(MSIPACKAGE *, LPCSTR, LPSTR, LPDWORD );
753 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
754 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
755 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * );
756 extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
757 extern LPCWSTR msi_download_file( LPCWSTR szUrl, LPWSTR filename );
758 extern UINT msi_package_add_info(MSIPACKAGE *, DWORD, DWORD, LPCWSTR, LPWSTR);
759 extern UINT msi_package_add_media_disk(MSIPACKAGE *, DWORD, DWORD, DWORD, LPWSTR, LPWSTR);
760 extern UINT msi_clone_properties(MSIPACKAGE *);
762 /* for deformating */
763 extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, LPDWORD );
765 /* registry data encoding/decoding functions */
766 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
767 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
768 extern BOOL encode_base85_guid(GUID *,LPWSTR);
769 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
770 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
771 extern UINT MSIREG_DeleteUninstallKey(LPCWSTR szProduct);
772 extern UINT MSIREG_OpenProductKey(LPCWSTR szProduct, LPCWSTR szUserSid,
773 MSIINSTALLCONTEXT context, HKEY* key, BOOL create);
774 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
775 HKEY *key, BOOL create);
776 extern UINT MSIREG_OpenUserPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
777 UINT MSIREG_OpenUserDataFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
778 HKEY *key, BOOL create);
779 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
780 extern UINT MSIREG_OpenUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid,
781 HKEY *key, BOOL create);
782 extern UINT MSIREG_OpenPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create);
783 extern UINT MSIREG_OpenUserDataProductKey(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
784 LPCWSTR szUserSid, HKEY *key, BOOL create);
785 extern UINT MSIREG_OpenUserDataPatchKey(LPCWSTR szPatch, MSIINSTALLCONTEXT dwContext,
786 HKEY *key, BOOL create);
787 extern UINT MSIREG_OpenInstallProps(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
788 LPCWSTR szUserSid, HKEY *key, BOOL create);
789 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
790 extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
791 extern UINT MSIREG_DeleteProductKey(LPCWSTR szProduct);
792 extern UINT MSIREG_DeleteUserProductKey(LPCWSTR szProduct);
793 extern UINT MSIREG_DeleteUserDataProductKey(LPCWSTR szProduct);
794 extern UINT MSIREG_DeleteUserFeaturesKey(LPCWSTR szProduct);
795 extern UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid);
796 extern UINT MSIREG_DeleteUserUpgradeCodesKey(LPCWSTR szUpgradeCode);
797 extern UINT MSIREG_OpenClassesUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create);
798 extern UINT MSIREG_DeleteLocalClassesProductKey(LPCWSTR szProductCode);
799 extern UINT MSIREG_DeleteLocalClassesFeaturesKey(LPCWSTR szProductCode);
801 extern LPWSTR msi_reg_get_val_str( HKEY hkey, LPCWSTR name );
802 extern BOOL msi_reg_get_val_dword( HKEY hkey, LPCWSTR name, DWORD *val);
804 extern DWORD msi_version_str_to_dword(LPCWSTR p);
806 extern LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
807 extern LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
808 extern LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val );
809 extern LONG msi_reg_set_subkey_val( HKEY hkey, LPCWSTR path, LPCWSTR name, LPCWSTR val );
811 /* msi dialog interface */
812 typedef UINT (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
813 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog*, msi_dialog_event_handler );
814 extern UINT msi_dialog_run_message_loop( msi_dialog* );
815 extern void msi_dialog_end_dialog( msi_dialog* );
816 extern void msi_dialog_check_messages( HANDLE );
817 extern void msi_dialog_do_preview( msi_dialog* );
818 extern void msi_dialog_destroy( msi_dialog* );
819 extern void msi_dialog_unregister_class( void );
820 extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
821 extern UINT msi_dialog_reset( msi_dialog *dialog );
822 extern UINT msi_dialog_directorylist_up( msi_dialog *dialog );
823 extern msi_dialog *msi_dialog_get_parent( msi_dialog *dialog );
824 extern LPWSTR msi_dialog_get_name( msi_dialog *dialog );
825 extern UINT msi_spawn_error_dialog( MSIPACKAGE*, LPWSTR, LPWSTR );
827 /* summary information */
828 extern MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount );
829 extern LPWSTR msi_suminfo_dup_string( MSISUMMARYINFO *si, UINT uiProperty );
830 extern LPWSTR msi_get_suminfo_product( IStorage *stg );
831 extern UINT msi_add_suminfo( MSIDATABASE *db, LPWSTR **records, int num_records, int num_columns );
833 /* undocumented functions */
834 UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
835 UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, LPDWORD );
836 UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, LPDWORD );
837 LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
838 LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
841 extern INSTALLUILEVEL gUILevel;
843 extern INSTALLUI_HANDLERA gUIHandlerA;
844 extern INSTALLUI_HANDLERW gUIHandlerW;
845 extern DWORD gUIFilter;
846 extern LPVOID gUIContext;
847 extern WCHAR gszLogFile[MAX_PATH];
848 extern HINSTANCE msi_hInstance;
850 /* action related functions */
851 extern UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, UINT script, BOOL force);
852 extern UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action, UINT script);
853 extern void ACTION_FinishCustomActions( const MSIPACKAGE* package);
854 extern UINT ACTION_CustomAction(MSIPACKAGE *package,const WCHAR *action, UINT script, BOOL execute);
856 static inline void msi_feature_set_state(MSIPACKAGE *package,
860 if (!package->ProductCode)
862 feature->ActionRequest = state;
863 feature->Action = state;
865 else if (state == INSTALLSTATE_ABSENT)
867 switch (feature->Installed)
869 case INSTALLSTATE_ABSENT:
870 feature->ActionRequest = INSTALLSTATE_UNKNOWN;
871 feature->Action = INSTALLSTATE_UNKNOWN;
874 feature->ActionRequest = state;
875 feature->Action = state;
878 else if (state == INSTALLSTATE_SOURCE)
880 switch (feature->Installed)
882 case INSTALLSTATE_ABSENT:
883 case INSTALLSTATE_SOURCE:
884 feature->ActionRequest = state;
885 feature->Action = state;
887 case INSTALLSTATE_LOCAL:
888 feature->ActionRequest = INSTALLSTATE_LOCAL;
889 feature->Action = INSTALLSTATE_LOCAL;
892 feature->ActionRequest = INSTALLSTATE_UNKNOWN;
893 feature->Action = INSTALLSTATE_UNKNOWN;
898 feature->ActionRequest = state;
899 feature->Action = state;
903 static inline void msi_component_set_state(MSIPACKAGE *package,
907 if (!package->ProductCode)
909 comp->ActionRequest = state;
910 comp->Action = state;
912 else if (state == INSTALLSTATE_ABSENT)
914 switch (comp->Installed)
916 case INSTALLSTATE_LOCAL:
917 case INSTALLSTATE_SOURCE:
918 case INSTALLSTATE_DEFAULT:
919 comp->ActionRequest = state;
920 comp->Action = state;
923 comp->ActionRequest = INSTALLSTATE_UNKNOWN;
924 comp->Action = INSTALLSTATE_UNKNOWN;
927 else if (state == INSTALLSTATE_SOURCE)
929 if (comp->Installed == INSTALLSTATE_ABSENT ||
930 (comp->Installed == INSTALLSTATE_SOURCE && comp->hasLocalFeature))
932 comp->ActionRequest = state;
933 comp->Action = state;
937 comp->ActionRequest = INSTALLSTATE_UNKNOWN;
938 comp->Action = INSTALLSTATE_UNKNOWN;
943 comp->ActionRequest = state;
944 comp->Action = state;
948 /* actions in other modules */
949 extern UINT ACTION_AppSearch(MSIPACKAGE *package);
950 extern UINT ACTION_CCPSearch(MSIPACKAGE *package);
951 extern UINT ACTION_FindRelatedProducts(MSIPACKAGE *package);
952 extern UINT ACTION_InstallFiles(MSIPACKAGE *package);
953 extern UINT ACTION_RemoveFiles(MSIPACKAGE *package);
954 extern UINT ACTION_DuplicateFiles(MSIPACKAGE *package);
955 extern UINT ACTION_RegisterClassInfo(MSIPACKAGE *package);
956 extern UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package);
957 extern UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package);
958 extern UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package);
959 extern UINT ACTION_RegisterFonts(MSIPACKAGE *package);
962 extern DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data );
963 extern LPWSTR msi_dup_record_field(MSIRECORD *row, INT index);
964 extern LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop);
965 extern int msi_get_property_int( MSIPACKAGE *package, LPCWSTR prop, int def );
966 extern LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
967 BOOL set_prop, BOOL load_prop, MSIFOLDER **folder);
968 extern LPWSTR resolve_file_source(MSIPACKAGE *package, MSIFILE *file);
969 extern MSICOMPONENT *get_loaded_component( MSIPACKAGE* package, LPCWSTR Component );
970 extern MSIFEATURE *get_loaded_feature( MSIPACKAGE* package, LPCWSTR Feature );
971 extern MSIFILE *get_loaded_file( MSIPACKAGE* package, LPCWSTR file );
972 extern MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir );
973 extern void msi_reset_folders( MSIPACKAGE *package, BOOL source );
974 extern int track_tempfile(MSIPACKAGE *package, LPCWSTR path);
975 extern UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action);
976 extern void msi_free_action_script(MSIPACKAGE *package, UINT script);
977 extern LPWSTR build_icon_path(MSIPACKAGE *, LPCWSTR);
978 extern LPWSTR build_directory_name(DWORD , ...);
979 extern BOOL create_full_pathW(const WCHAR *path);
980 extern BOOL ACTION_VerifyComponentForAction(const MSICOMPONENT*, INSTALLSTATE);
981 extern BOOL ACTION_VerifyFeatureForAction(const MSIFEATURE*, INSTALLSTATE);
982 extern void reduce_to_longfilename(WCHAR*);
983 extern LPWSTR create_component_advertise_string(MSIPACKAGE*, MSICOMPONENT*, LPCWSTR);
984 extern void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature);
985 extern UINT register_unique_action(MSIPACKAGE *, LPCWSTR);
986 extern BOOL check_unique_action(const MSIPACKAGE *, LPCWSTR);
987 extern WCHAR* generate_error_string(MSIPACKAGE *, UINT, DWORD, ... );
988 extern UINT msi_create_component_directories( MSIPACKAGE *package );
989 extern UINT msi_set_last_used_source(LPCWSTR product, LPCWSTR usersid,
990 MSIINSTALLCONTEXT context, DWORD options, LPCWSTR value);
994 typedef BOOL (*PMSICABEXTRACTCB)(MSIPACKAGE *, LPCWSTR, DWORD, LPWSTR *, DWORD *, PVOID);
996 #define MSICABEXTRACT_BEGINEXTRACT 0x01
997 #define MSICABEXTRACT_FILEEXTRACTED 0x02
1001 MSIPACKAGE* package;
1003 PMSICABEXTRACTCB cb;
1008 extern UINT ready_media(MSIPACKAGE *package, MSIFILE *file, MSIMEDIAINFO *mi);
1009 extern void msi_free_media_info(MSIMEDIAINFO *mi);
1010 extern BOOL msi_cabextract(MSIPACKAGE* package, MSIMEDIAINFO *mi, LPVOID data);
1012 /* control event stuff */
1013 extern VOID ControlEvent_FireSubscribedEvent(MSIPACKAGE *package, LPCWSTR event,
1015 extern VOID ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE *package, LPWSTR dialog);
1016 extern VOID ControlEvent_CleanupSubscriptions(MSIPACKAGE *package);
1017 extern VOID ControlEvent_SubscribeToEvent(MSIPACKAGE *package, msi_dialog *dialog,
1018 LPCWSTR event, LPCWSTR control, LPCWSTR attribute);
1020 /* OLE automation */
1021 extern HRESULT create_msiserver(IUnknown *pOuter, LPVOID *ppObj);
1022 extern HRESULT create_session(MSIHANDLE msiHandle, IDispatch *pInstaller, IDispatch **pDispatch);
1023 extern HRESULT load_type_info(IDispatch *iface, ITypeInfo **pptinfo, REFIID clsid, LCID lcid);
1026 extern DWORD call_script(MSIHANDLE hPackage, INT type, LPCWSTR script, LPCWSTR function, LPCWSTR action);
1028 /* User Interface messages from the actions */
1029 extern void ui_progress(MSIPACKAGE *, int, int, int, int);
1030 extern void ui_actiondata(MSIPACKAGE *, LPCWSTR, MSIRECORD *);
1032 /* string consts use a number of places and defined in helpers.c*/
1033 extern const WCHAR cszSourceDir[];
1034 extern const WCHAR cszSOURCEDIR[];
1035 extern const WCHAR cszRootDrive[];
1036 extern const WCHAR cszbs[];
1037 extern const WCHAR szLocalSid[];
1039 /* memory allocation macro functions */
1040 static void *msi_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
1041 static inline void *msi_alloc( size_t len )
1043 return HeapAlloc( GetProcessHeap(), 0, len );
1046 static void *msi_alloc_zero( size_t len ) __WINE_ALLOC_SIZE(1);
1047 static inline void *msi_alloc_zero( size_t len )
1049 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
1052 static void *msi_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
1053 static inline void *msi_realloc( void *mem, size_t len )
1055 return HeapReAlloc( GetProcessHeap(), 0, mem, len );
1058 static void *msi_realloc_zero( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
1059 static inline void *msi_realloc_zero( void *mem, size_t len )
1061 return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len );
1064 static inline BOOL msi_free( void *mem )
1066 return HeapFree( GetProcessHeap(), 0, mem );
1069 static inline char *strdupWtoA( LPCWSTR str )
1074 if (!str) return ret;
1075 len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1076 ret = msi_alloc( len );
1078 WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
1082 static inline LPWSTR strdupAtoW( LPCSTR str )
1087 if (!str) return ret;
1088 len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
1089 ret = msi_alloc( len * sizeof(WCHAR) );
1091 MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
1095 static inline LPWSTR strdupW( LPCWSTR src )
1098 if (!src) return NULL;
1099 dest = msi_alloc( (lstrlenW(src)+1)*sizeof(WCHAR) );
1101 lstrcpyW(dest, src);
1105 #endif /* __WINE_MSI_PRIVATE__ */