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__
34 #include "wine/list.h"
36 #define MSI_DATASIZEMASK 0x00ff
37 #define MSITYPE_VALID 0x0100
38 #define MSITYPE_LOCALIZABLE 0x200
39 #define MSITYPE_STRING 0x0800
40 #define MSITYPE_NULLABLE 0x1000
41 #define MSITYPE_KEY 0x2000
43 /* Word Count masks */
44 #define MSIWORDCOUNT_SHORTFILENAMES 0x0001
45 #define MSIWORDCOUNT_COMPRESSED 0x0002
46 #define MSIWORDCOUNT_ADMINISTRATIVE 0x0004
47 #define MSIWORDCOUNT_PRIVILEGES 0x0008
49 /* Install UI level mask for AND operation to exclude flags */
50 #define INSTALLUILEVEL_MASK 0x0007
52 #define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
55 typedef struct tagMSITABLE MSITABLE
;
58 typedef struct string_table string_table
;
60 struct tagMSIOBJECTHDR
;
61 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR
;
63 typedef VOID (*msihandledestructor
)( MSIOBJECTHDR
* );
65 struct tagMSIOBJECTHDR
70 msihandledestructor destructor
;
73 typedef struct tagMSIDATABASE
77 string_table
*strings
;
78 UINT bytes_per_strref
;
83 struct list transforms
;
86 typedef struct tagMSIVIEW MSIVIEW
;
88 typedef struct tagMSIQUERY
97 /* maybe we can use a Variant instead of doing it ourselves? */
98 typedef struct tagMSIFIELD
109 typedef struct tagMSIRECORD
112 UINT count
; /* as passed to MsiCreateRecord */
113 MSIFIELD fields
[1]; /* nb. array size is count+1 */
116 typedef const struct tagMSICOLUMNHASHENTRY
*MSIITERHANDLE
;
118 typedef struct tagMSIVIEWOPS
121 * fetch_int - reads one integer from {row,col} in the table
123 * This function should be called after the execute method.
124 * Data returned by the function should not change until
125 * close or delete is called.
126 * To get a string value, query the database's string table with
127 * the integer value returned from this function.
129 UINT (*fetch_int
)( struct tagMSIVIEW
*, UINT row
, UINT col
, UINT
*val
);
132 * fetch_stream - gets a stream from {row,col} in the table
134 * This function is similar to fetch_int, except fetches a
135 * stream instead of an integer.
137 UINT (*fetch_stream
)( struct tagMSIVIEW
*, UINT row
, UINT col
, IStream
**stm
);
140 * set_row - sets values in a row as specified by mask
142 * Similar semantics to fetch_int
144 UINT (*set_row
)( struct tagMSIVIEW
*, UINT row
, MSIRECORD
*rec
, UINT mask
);
147 * Inserts a new row into the database from the records contents
149 UINT (*insert_row
)( struct tagMSIVIEW
*, MSIRECORD
*, BOOL temporary
);
152 * execute - loads the underlying data into memory so it can be read
154 UINT (*execute
)( struct tagMSIVIEW
*, MSIRECORD
* );
157 * close - clears the data read by execute from memory
159 UINT (*close
)( struct tagMSIVIEW
* );
162 * get_dimensions - returns the number of rows or columns in a table.
164 * The number of rows can only be queried after the execute method
165 * is called. The number of columns can be queried at any time.
167 UINT (*get_dimensions
)( struct tagMSIVIEW
*, UINT
*rows
, UINT
*cols
);
170 * get_column_info - returns the name and type of a specific column
172 * The name is HeapAlloc'ed by this function and should be freed by
174 * The column information can be queried at any time.
176 UINT (*get_column_info
)( struct tagMSIVIEW
*, UINT n
, LPWSTR
*name
, UINT
*type
);
179 * modify - not yet implemented properly
181 UINT (*modify
)( struct tagMSIVIEW
*, MSIMODIFY
, MSIRECORD
* );
184 * delete - destroys the structure completely
186 UINT (*delete)( struct tagMSIVIEW
* );
189 * find_matching_rows - iterates through rows that match a value
191 * If the column type is a string then a string ID should be passed in.
192 * If the value to be looked up is an integer then no transformation of
193 * the input value is required, except if the column is a string, in which
194 * case a string ID should be passed in.
195 * The handle is an input/output parameter that keeps track of the current
196 * position in the iteration. It must be initialised to zero before the
197 * first call and continued to be passed in to subsequent calls.
199 UINT (*find_matching_rows
)( struct tagMSIVIEW
*, UINT col
, UINT val
, UINT
*row
, MSIITERHANDLE
*handle
);
205 const MSIVIEWOPS
*ops
;
208 struct msi_dialog_tag
;
209 typedef struct msi_dialog_tag msi_dialog
;
211 typedef struct tagMSIPACKAGE
215 struct list components
;
216 struct list features
;
218 struct list tempfiles
;
224 struct list extensions
;
229 struct tagMSISCRIPT
*script
;
231 struct list RunningActions
;
237 UINT CurrentInstallState
;
245 struct list subscriptions
;
248 typedef struct tagMSIPREVIEW
255 #define MSI_MAX_PROPS 20
257 typedef struct tagMSISUMMARYINFO
262 PROPVARIANT property
[MSI_MAX_PROPS
];
265 typedef struct tagMSIFEATURE
269 LPWSTR Feature_Parent
;
276 INSTALLSTATE Installed
;
277 INSTALLSTATE ActionRequest
;
279 struct list Children
;
280 struct list Components
;
284 typedef struct tagMSICOMPONENT
294 INSTALLSTATE Installed
;
295 INSTALLSTATE ActionRequest
;
297 BOOL ForceLocalState
;
302 LPWSTR AdvertiseString
;
304 unsigned int hasAdvertiseFeature
:1;
305 unsigned int hasLocalFeature
:1;
306 unsigned int hasSourceFeature
:1;
309 typedef struct tagComponentList
312 MSICOMPONENT
*component
;
315 typedef struct tagFeatureList
321 typedef struct tagMSIFOLDER
326 LPWSTR TargetDefault
;
327 LPWSTR SourceLongPath
;
328 LPWSTR SourceShortPath
;
330 LPWSTR ResolvedTarget
;
331 LPWSTR ResolvedSource
;
332 LPWSTR Property
; /* initially set property */
334 /* 0 = uninitialized */
336 /* 2 = created remove if empty */
337 /* 3 = created persist if empty */
342 typedef enum _msi_file_state
{
351 typedef struct tagMSIFILE
355 MSICOMPONENT
*Component
;
364 msi_file_state state
;
370 typedef struct tagMSITEMPFILE
376 typedef struct tagMSIAPPID
379 LPWSTR AppID
; /* Primary key */
380 LPWSTR RemoteServerName
;
382 LPWSTR ServiceParameters
;
384 BOOL ActivateAtStorage
;
385 BOOL RunAsInteractiveUser
;
388 typedef struct tagMSIPROGID MSIPROGID
;
390 typedef struct tagMSICLASS
393 LPWSTR clsid
; /* Primary Key */
394 LPWSTR Context
; /* Primary Key */
395 MSICOMPONENT
*Component
;
402 LPWSTR DefInprocHandler
;
403 LPWSTR DefInprocHandler32
;
407 /* not in the table, set during installation */
411 typedef struct tagMSIMIME MSIMIME
;
413 typedef struct tagMSIEXTENSION
416 LPWSTR Extension
; /* Primary Key */
417 MSICOMPONENT
*Component
;
422 /* not in the table, set during installation */
430 LPWSTR ProgID
; /* Primary Key */
435 /* not in the table, set during installation */
438 MSIPROGID
*VersionInd
;
441 typedef struct tagMSIVERB
453 LPWSTR ContentType
; /* Primary Key */
454 MSIEXTENSION
*Extension
;
457 /* not in the table, set during installation */
468 #define SEQUENCE_UI 0x1
469 #define SEQUENCE_EXEC 0x2
470 #define SEQUENCE_INSTALL 0x10
472 typedef struct tagMSISCRIPT
474 LPWSTR
*Actions
[TOTAL_SCRIPTS
];
475 UINT ActionCount
[TOTAL_SCRIPTS
];
476 BOOL ExecuteSequenceRun
;
477 BOOL CurrentlyScripting
;
479 LPWSTR
*UniqueActions
;
480 UINT UniqueActionsCount
;
483 #define MSIHANDLETYPE_ANY 0
484 #define MSIHANDLETYPE_DATABASE 1
485 #define MSIHANDLETYPE_SUMMARYINFO 2
486 #define MSIHANDLETYPE_VIEW 3
487 #define MSIHANDLETYPE_RECORD 4
488 #define MSIHANDLETYPE_PACKAGE 5
489 #define MSIHANDLETYPE_PREVIEW 6
491 #define MSI_MAJORVERSION 3
492 #define MSI_MINORVERSION 1
493 #define MSI_BUILDNUMBER 4000
497 #define MSIHANDLE_MAGIC 0x4d434923
499 DEFINE_GUID(CLSID_IMsiServer
, 0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
500 DEFINE_GUID(CLSID_IMsiServerX1
, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
501 DEFINE_GUID(CLSID_IMsiServerX2
, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
502 DEFINE_GUID(CLSID_IMsiServerX3
, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
504 DEFINE_GUID(CLSID_IMsiServerMessage
, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
506 /* handle unicode/ascii output in the Msi* API functions */
523 UINT
msi_strcpy_to_awstring( LPCWSTR str
, awstring
*awbuf
, DWORD
*sz
);
525 /* msi server interface */
526 extern ITypeLib
*get_msi_typelib( LPWSTR
*path
);
528 /* handle functions */
529 extern void *msihandle2msiinfo(MSIHANDLE handle
, UINT type
);
530 extern MSIHANDLE
alloc_msihandle( MSIOBJECTHDR
* );
531 extern void *alloc_msiobject(UINT type
, UINT size
, msihandledestructor destroy
);
532 extern void msiobj_addref(MSIOBJECTHDR
*);
533 extern int msiobj_release(MSIOBJECTHDR
*);
534 extern void msiobj_lock(MSIOBJECTHDR
*);
535 extern void msiobj_unlock(MSIOBJECTHDR
*);
536 extern void msi_free_handle_table(void);
538 extern void free_cached_tables( MSIDATABASE
*db
);
539 extern void msi_free_transforms( MSIDATABASE
*db
);
540 extern UINT
MSI_CommitTables( MSIDATABASE
*db
);
543 /* string table functions */
544 enum StringPersistence
546 StringPersistent
= 0,
547 StringNonPersistent
= 1
550 extern BOOL
msi_addstringW( string_table
*st
, UINT string_no
, const WCHAR
*data
, int len
, UINT refcount
, enum StringPersistence persistence
);
551 extern UINT
msi_id2stringW( const string_table
*st
, UINT string_no
, LPWSTR buffer
, UINT
*sz
);
552 extern UINT
msi_id2stringA( const string_table
*st
, UINT string_no
, LPSTR buffer
, UINT
*sz
);
554 extern UINT
msi_string2idW( const string_table
*st
, LPCWSTR buffer
, UINT
*id
);
555 extern UINT
msi_string2idA( const string_table
*st
, LPCSTR str
, UINT
*id
);
556 extern VOID
msi_destroy_stringtable( string_table
*st
);
557 extern UINT
msi_strcmp( const string_table
*st
, UINT lval
, UINT rval
, UINT
*res
);
558 extern const WCHAR
*msi_string_lookup_id( const string_table
*st
, UINT id
);
559 extern HRESULT
msi_init_string_table( IStorage
*stg
);
560 extern string_table
*msi_load_string_table( IStorage
*stg
, UINT
*bytes_per_strref
);
561 extern UINT
msi_save_string_table( const string_table
*st
, IStorage
*storage
);
564 extern void msi_table_set_strref(UINT bytes_per_strref
);
565 extern BOOL
TABLE_Exists( MSIDATABASE
*db
, LPCWSTR name
);
566 extern MSICONDITION
MSI_DatabaseIsTablePersistent( MSIDATABASE
*db
, LPCWSTR table
);
568 extern UINT
read_raw_stream_data( MSIDATABASE
*, LPCWSTR stname
,
569 USHORT
**pdata
, UINT
*psz
);
570 extern UINT
read_stream_data( IStorage
*stg
, LPCWSTR stname
,
571 USHORT
**pdata
, UINT
*psz
);
572 extern UINT
write_stream_data( IStorage
*stg
, LPCWSTR stname
,
573 LPCVOID data
, UINT sz
, BOOL bTable
);
575 /* transform functions */
576 extern UINT
msi_table_apply_transform( MSIDATABASE
*db
, IStorage
*stg
);
577 extern UINT
MSI_DatabaseApplyTransformW( MSIDATABASE
*db
,
578 LPCWSTR szTransformFile
, int iErrorCond
);
579 extern void append_storage_to_db( MSIDATABASE
*db
, IStorage
*stg
);
581 /* action internals */
582 extern UINT
MSI_InstallPackage( MSIPACKAGE
*, LPCWSTR
, LPCWSTR
);
583 extern void ACTION_free_package_structures( MSIPACKAGE
* );
584 extern UINT
ACTION_DialogBox( MSIPACKAGE
*, LPCWSTR
);
585 extern UINT
ACTION_ForceReboot(MSIPACKAGE
*package
);
586 extern UINT
MSI_Sequence( MSIPACKAGE
*package
, LPCWSTR szTable
, INT iSequenceMode
);
587 extern UINT
MSI_SetFeatureStates( MSIPACKAGE
*package
);
589 /* record internals */
590 extern UINT
MSI_RecordSetIStream( MSIRECORD
*, unsigned int, IStream
*);
591 extern UINT
MSI_RecordGetIStream( MSIRECORD
*, unsigned int, IStream
**);
592 extern const WCHAR
*MSI_RecordGetString( const MSIRECORD
*, unsigned int );
593 extern MSIRECORD
*MSI_CreateRecord( unsigned int );
594 extern UINT
MSI_RecordSetInteger( MSIRECORD
*, unsigned int, int );
595 extern UINT
MSI_RecordSetStringW( MSIRECORD
*, unsigned int, LPCWSTR
);
596 extern UINT
MSI_RecordSetStringA( MSIRECORD
*, unsigned int, LPCSTR
);
597 extern BOOL
MSI_RecordIsNull( MSIRECORD
*, unsigned int );
598 extern UINT
MSI_RecordGetStringW( MSIRECORD
* , unsigned int, LPWSTR
, DWORD
*);
599 extern UINT
MSI_RecordGetStringA( MSIRECORD
*, unsigned int, LPSTR
, DWORD
*);
600 extern int MSI_RecordGetInteger( MSIRECORD
*, unsigned int );
601 extern UINT
MSI_RecordReadStream( MSIRECORD
*, unsigned int, char *, DWORD
*);
602 extern unsigned int MSI_RecordGetFieldCount( const MSIRECORD
*rec
);
603 extern UINT
MSI_RecordSetStream( MSIRECORD
*, unsigned int, IStream
* );
604 extern UINT
MSI_RecordDataSize( MSIRECORD
*, unsigned int );
605 extern UINT
MSI_RecordStreamToFile( MSIRECORD
*, unsigned int, LPCWSTR
);
606 extern UINT
MSI_RecordCopyField( MSIRECORD
*, unsigned int, MSIRECORD
*, unsigned int );
608 /* stream internals */
609 extern UINT
get_raw_stream( MSIHANDLE hdb
, LPCWSTR stname
, IStream
**stm
);
610 extern UINT
db_get_raw_stream( MSIDATABASE
*db
, LPCWSTR stname
, IStream
**stm
);
611 extern void enum_stream_names( IStorage
*stg
);
612 extern BOOL
decode_streamname(LPCWSTR in
, LPWSTR out
);
613 extern LPWSTR
encode_streamname(BOOL bTable
, LPCWSTR in
);
615 /* database internals */
616 extern UINT
MSI_OpenDatabaseW( LPCWSTR
, LPCWSTR
, MSIDATABASE
** );
617 extern UINT
MSI_DatabaseOpenViewW(MSIDATABASE
*, LPCWSTR
, MSIQUERY
** );
618 extern UINT
MSI_OpenQuery( MSIDATABASE
*, MSIQUERY
**, LPCWSTR
, ... );
619 typedef UINT (*record_func
)( MSIRECORD
*, LPVOID
);
620 extern UINT
MSI_IterateRecords( MSIQUERY
*, DWORD
*, record_func
, LPVOID
);
621 extern MSIRECORD
*MSI_QueryGetRecord( MSIDATABASE
*db
, LPCWSTR query
, ... );
622 extern UINT
MSI_DatabaseImport( MSIDATABASE
*, LPCWSTR
, LPCWSTR
);
623 extern UINT
MSI_DatabaseExport( MSIDATABASE
*, LPCWSTR
, LPCWSTR
, LPCWSTR
);
624 extern UINT
MSI_DatabaseGetPrimaryKeys( MSIDATABASE
*, LPCWSTR
, MSIRECORD
** );
627 extern UINT
MSI_ViewExecute( MSIQUERY
*, MSIRECORD
* );
628 extern UINT
MSI_ViewFetch( MSIQUERY
*, MSIRECORD
** );
629 extern UINT
MSI_ViewClose( MSIQUERY
* );
630 extern UINT
MSI_ViewGetColumnInfo(MSIQUERY
*, MSICOLINFO
, MSIRECORD
**);
631 extern UINT
MSI_ViewModify( MSIQUERY
*, MSIMODIFY
, MSIRECORD
* );
632 extern UINT
VIEW_find_column( MSIVIEW
*, LPCWSTR
, UINT
* );
635 /* install internals */
636 extern UINT
MSI_SetInstallLevel( MSIPACKAGE
*package
, int iInstallLevel
);
638 /* package internals */
639 extern MSIPACKAGE
*MSI_CreatePackage( MSIDATABASE
*, LPCWSTR
);
640 extern UINT
MSI_OpenPackageW( LPCWSTR szPackage
, MSIPACKAGE
** );
641 extern UINT
MSI_SetTargetPathW( MSIPACKAGE
*, LPCWSTR
, LPCWSTR
);
642 extern UINT
MSI_SetPropertyW( MSIPACKAGE
*, LPCWSTR
, LPCWSTR
);
643 extern INT
MSI_ProcessMessage( MSIPACKAGE
*, INSTALLMESSAGE
, MSIRECORD
* );
644 extern UINT
MSI_GetPropertyW( MSIPACKAGE
*, LPCWSTR
, LPWSTR
, DWORD
* );
645 extern UINT
MSI_GetPropertyA(MSIPACKAGE
*, LPCSTR
, LPSTR
, DWORD
* );
646 extern MSICONDITION
MSI_EvaluateConditionW( MSIPACKAGE
*, LPCWSTR
);
647 extern UINT
MSI_GetComponentStateW( MSIPACKAGE
*, LPCWSTR
, INSTALLSTATE
*, INSTALLSTATE
* );
648 extern UINT
MSI_GetFeatureStateW( MSIPACKAGE
*, LPCWSTR
, INSTALLSTATE
*, INSTALLSTATE
* );
649 extern UINT WINAPI
MSI_SetFeatureStateW(MSIPACKAGE
*, LPCWSTR
, INSTALLSTATE
);
650 extern LPCWSTR
msi_download_file( LPCWSTR szUrl
, LPWSTR filename
);
652 /* for deformating */
653 extern UINT
MSI_FormatRecordW( MSIPACKAGE
*, MSIRECORD
*, LPWSTR
, DWORD
* );
654 extern UINT
MSI_FormatRecordA( MSIPACKAGE
*, MSIRECORD
*, LPSTR
, DWORD
* );
656 /* registry data encoding/decoding functions */
657 extern BOOL
unsquash_guid(LPCWSTR in
, LPWSTR out
);
658 extern BOOL
squash_guid(LPCWSTR in
, LPWSTR out
);
659 extern BOOL
encode_base85_guid(GUID
*,LPWSTR
);
660 extern BOOL
decode_base85_guid(LPCWSTR
,GUID
*);
661 extern UINT
MSIREG_OpenUninstallKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
662 extern UINT
MSIREG_OpenUserProductsKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
663 extern UINT
MSIREG_OpenFeatures(HKEY
* key
);
664 extern UINT
MSIREG_OpenFeaturesKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
665 extern UINT
MSIREG_OpenComponents(HKEY
* key
);
666 extern UINT
MSIREG_OpenUserComponentsKey(LPCWSTR szComponent
, HKEY
* key
, BOOL create
);
667 extern UINT
MSIREG_OpenComponentsKey(LPCWSTR szComponent
, HKEY
* key
, BOOL create
);
668 extern UINT
MSIREG_OpenProductsKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
669 extern UINT
MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
670 extern UINT
MSIREG_OpenUserComponentsKey(LPCWSTR szComponent
, HKEY
* key
, BOOL create
);
671 extern UINT
MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
672 extern UINT
MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct
, HKEY
* key
, BOOL create
);
674 extern LPWSTR
msi_reg_get_val_str( HKEY hkey
, LPCWSTR name
);
675 extern BOOL
msi_reg_get_val_dword( HKEY hkey
, LPCWSTR name
, DWORD
*val
);
677 extern DWORD
msi_version_str_to_dword(LPCWSTR p
);
678 extern LPWSTR
msi_version_dword_to_str(DWORD version
);
680 extern LONG
msi_reg_set_val_str( HKEY hkey
, LPCWSTR name
, LPCWSTR value
);
681 extern LONG
msi_reg_set_val_multi_str( HKEY hkey
, LPCWSTR name
, LPCWSTR value
);
682 extern LONG
msi_reg_set_val_dword( HKEY hkey
, LPCWSTR name
, DWORD val
);
683 extern LONG
msi_reg_set_subkey_val( HKEY hkey
, LPCWSTR path
, LPCWSTR name
, LPCWSTR val
);
685 /* msi dialog interface */
686 typedef UINT (*msi_dialog_event_handler
)( MSIPACKAGE
*, LPCWSTR
, LPCWSTR
, msi_dialog
* );
687 extern msi_dialog
*msi_dialog_create( MSIPACKAGE
*, LPCWSTR
, msi_dialog
*, msi_dialog_event_handler
);
688 extern UINT
msi_dialog_run_message_loop( msi_dialog
* );
689 extern void msi_dialog_end_dialog( msi_dialog
* );
690 extern void msi_dialog_check_messages( HANDLE
);
691 extern void msi_dialog_do_preview( msi_dialog
* );
692 extern void msi_dialog_destroy( msi_dialog
* );
693 extern BOOL
msi_dialog_register_class( void );
694 extern void msi_dialog_unregister_class( void );
695 extern void msi_dialog_handle_event( msi_dialog
*, LPCWSTR
, LPCWSTR
, MSIRECORD
* );
696 extern UINT
msi_dialog_reset( msi_dialog
*dialog
);
697 extern UINT
msi_dialog_directorylist_up( msi_dialog
*dialog
);
698 extern msi_dialog
*msi_dialog_get_parent( msi_dialog
*dialog
);
699 extern LPWSTR
msi_dialog_get_name( msi_dialog
*dialog
);
700 extern UINT
msi_spawn_error_dialog( MSIPACKAGE
*, LPWSTR
, LPWSTR
);
703 extern MSIPREVIEW
*MSI_EnableUIPreview( MSIDATABASE
* );
704 extern UINT
MSI_PreviewDialogW( MSIPREVIEW
*, LPCWSTR
);
706 /* summary information */
707 extern MSISUMMARYINFO
*MSI_GetSummaryInformationW( IStorage
*stg
, UINT uiUpdateCount
);
708 extern LPWSTR
msi_suminfo_dup_string( MSISUMMARYINFO
*si
, UINT uiProperty
);
709 extern LPWSTR
msi_get_suminfo_product( IStorage
*stg
);
711 /* undocumented functions */
712 UINT WINAPI
MsiCreateAndVerifyInstallerDirectory( DWORD
);
713 UINT WINAPI
MsiDecomposeDescriptorW( LPCWSTR
, LPWSTR
, LPWSTR
, LPWSTR
, DWORD
* );
714 UINT WINAPI
MsiDecomposeDescriptorA( LPCSTR
, LPSTR
, LPSTR
, LPSTR
, DWORD
* );
715 LANGID WINAPI
MsiLoadStringW( MSIHANDLE
, UINT
, LPWSTR
, int, LANGID
);
716 LANGID WINAPI
MsiLoadStringA( MSIHANDLE
, UINT
, LPSTR
, int, LANGID
);
719 extern INSTALLUILEVEL gUILevel
;
721 extern INSTALLUI_HANDLERA gUIHandlerA
;
722 extern INSTALLUI_HANDLERW gUIHandlerW
;
723 extern DWORD gUIFilter
;
724 extern LPVOID gUIContext
;
725 extern WCHAR gszLogFile
[MAX_PATH
];
726 extern HINSTANCE msi_hInstance
;
728 /* action related functions */
729 extern UINT
ACTION_PerformAction(MSIPACKAGE
*package
, const WCHAR
*action
, BOOL force
);
730 extern UINT
ACTION_PerformUIAction(MSIPACKAGE
*package
, const WCHAR
*action
);
731 extern void ACTION_FinishCustomActions( const MSIPACKAGE
* package
);
732 extern UINT
ACTION_CustomAction(MSIPACKAGE
*package
,const WCHAR
*action
, BOOL execute
);
734 static inline void msi_feature_set_state( MSIFEATURE
*feature
, INSTALLSTATE state
)
736 feature
->ActionRequest
= state
;
737 feature
->Action
= state
;
740 static inline void msi_component_set_state( MSICOMPONENT
*comp
, INSTALLSTATE state
)
742 comp
->ActionRequest
= state
;
743 comp
->Action
= state
;
746 /* actions in other modules */
747 extern UINT
ACTION_AppSearch(MSIPACKAGE
*package
);
748 extern UINT
ACTION_FindRelatedProducts(MSIPACKAGE
*package
);
749 extern UINT
ACTION_InstallFiles(MSIPACKAGE
*package
);
750 extern UINT
ACTION_RemoveFiles(MSIPACKAGE
*package
);
751 extern UINT
ACTION_DuplicateFiles(MSIPACKAGE
*package
);
752 extern UINT
ACTION_RegisterClassInfo(MSIPACKAGE
*package
);
753 extern UINT
ACTION_RegisterProgIdInfo(MSIPACKAGE
*package
);
754 extern UINT
ACTION_RegisterExtensionInfo(MSIPACKAGE
*package
);
755 extern UINT
ACTION_RegisterMIMEInfo(MSIPACKAGE
*package
);
756 extern UINT
ACTION_RegisterFonts(MSIPACKAGE
*package
);
759 extern DWORD
deformat_string(MSIPACKAGE
*package
, LPCWSTR ptr
, WCHAR
** data
);
760 extern LPWSTR
msi_dup_record_field(MSIRECORD
*row
, INT index
);
761 extern LPWSTR
msi_dup_property(MSIPACKAGE
*package
, LPCWSTR prop
);
762 extern int msi_get_property_int( MSIPACKAGE
*package
, LPCWSTR prop
, int def
);
763 extern LPWSTR
resolve_folder(MSIPACKAGE
*package
, LPCWSTR name
, BOOL source
,
764 BOOL set_prop
, BOOL load_prop
, MSIFOLDER
**folder
);
765 extern MSICOMPONENT
*get_loaded_component( MSIPACKAGE
* package
, LPCWSTR Component
);
766 extern MSIFEATURE
*get_loaded_feature( MSIPACKAGE
* package
, LPCWSTR Feature
);
767 extern MSIFILE
*get_loaded_file( MSIPACKAGE
* package
, LPCWSTR file
);
768 extern MSIFOLDER
*get_loaded_folder( MSIPACKAGE
*package
, LPCWSTR dir
);
769 extern int track_tempfile(MSIPACKAGE
*package
, LPCWSTR path
);
770 extern UINT
schedule_action(MSIPACKAGE
*package
, UINT script
, LPCWSTR action
);
771 extern void msi_free_action_script(MSIPACKAGE
*package
, UINT script
);
772 extern LPWSTR
build_icon_path(MSIPACKAGE
*, LPCWSTR
);
773 extern LPWSTR
build_directory_name(DWORD
, ...);
774 extern BOOL
create_full_pathW(const WCHAR
*path
);
775 extern BOOL
ACTION_VerifyComponentForAction(const MSICOMPONENT
*, INSTALLSTATE
);
776 extern BOOL
ACTION_VerifyFeatureForAction(const MSIFEATURE
*, INSTALLSTATE
);
777 extern void reduce_to_longfilename(WCHAR
*);
778 extern void reduce_to_shortfilename(WCHAR
*);
779 extern LPWSTR
create_component_advertise_string(MSIPACKAGE
*, MSICOMPONENT
*, LPCWSTR
);
780 extern void ACTION_UpdateComponentStates(MSIPACKAGE
*package
, LPCWSTR szFeature
);
781 extern UINT
register_unique_action(MSIPACKAGE
*, LPCWSTR
);
782 extern BOOL
check_unique_action(const MSIPACKAGE
*, LPCWSTR
);
783 extern WCHAR
* generate_error_string(MSIPACKAGE
*, UINT
, DWORD
, ... );
784 extern UINT
msi_create_component_directories( MSIPACKAGE
*package
);
785 extern void msi_ui_error( DWORD msg_id
, DWORD type
);
787 /* control event stuff */
788 extern VOID
ControlEvent_FireSubscribedEvent(MSIPACKAGE
*package
, LPCWSTR event
,
790 extern VOID
ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE
*package
, LPWSTR dialog
);
791 extern VOID
ControlEvent_CleanupSubscriptions(MSIPACKAGE
*package
);
792 extern VOID
ControlEvent_SubscribeToEvent(MSIPACKAGE
*package
, msi_dialog
*dialog
,
793 LPCWSTR event
, LPCWSTR control
, LPCWSTR attribute
);
794 extern VOID
ControlEvent_UnSubscribeToEvent( MSIPACKAGE
*package
, LPCWSTR event
,
795 LPCWSTR control
, LPCWSTR attribute
);
798 extern HRESULT
create_msiserver(IUnknown
*pOuter
, LPVOID
*ppObj
);
799 extern HRESULT
create_session(MSIHANDLE msiHandle
, IDispatch
*pInstaller
, IDispatch
**pDispatch
);
800 extern HRESULT
load_type_info(IDispatch
*iface
, ITypeInfo
**pptinfo
, REFIID clsid
, LCID lcid
);
803 extern DWORD
call_script(MSIHANDLE hPackage
, INT type
, LPCWSTR script
, LPCWSTR function
, LPCWSTR action
);
805 /* User Interface messages from the actions */
806 extern void ui_progress(MSIPACKAGE
*, int, int, int, int);
807 extern void ui_actiondata(MSIPACKAGE
*, LPCWSTR
, MSIRECORD
*);
809 /* string consts use a number of places and defined in helpers.c*/
810 extern const WCHAR cszSourceDir
[];
811 extern const WCHAR cszSOURCEDIR
[];
812 extern const WCHAR szProductCode
[];
813 extern const WCHAR cszRootDrive
[];
814 extern const WCHAR cszbs
[];
816 /* memory allocation macro functions */
817 static inline void *msi_alloc( size_t len
)
819 return HeapAlloc( GetProcessHeap(), 0, len
);
822 static inline void *msi_alloc_zero( size_t len
)
824 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
827 static inline void *msi_realloc( void *mem
, size_t len
)
829 return HeapReAlloc( GetProcessHeap(), 0, mem
, len
);
832 static inline void *msi_realloc_zero( void *mem
, size_t len
)
834 return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, mem
, len
);
837 static inline BOOL
msi_free( void *mem
)
839 return HeapFree( GetProcessHeap(), 0, mem
);
842 static inline char *strdupWtoA( LPCWSTR str
)
847 if (!str
) return ret
;
848 len
= WideCharToMultiByte( CP_ACP
, 0, str
, -1, NULL
, 0, NULL
, NULL
);
849 ret
= msi_alloc( len
);
851 WideCharToMultiByte( CP_ACP
, 0, str
, -1, ret
, len
, NULL
, NULL
);
855 static inline LPWSTR
strdupAtoW( LPCSTR str
)
860 if (!str
) return ret
;
861 len
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, NULL
, 0 );
862 ret
= msi_alloc( len
* sizeof(WCHAR
) );
864 MultiByteToWideChar( CP_ACP
, 0, str
, -1, ret
, len
);
868 static inline LPWSTR
strdupW( LPCWSTR src
)
871 if (!src
) return NULL
;
872 dest
= msi_alloc( (lstrlenW(src
)+1)*sizeof(WCHAR
) );
878 #endif /* __WINE_MSI_PRIVATE__ */