2 * Common prototypes for Action handlers
4 * Copyright 2005 Aric Stewart for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __MSI_ACTION_H__
22 #define __MSI_ACTION_H__
24 #include "wine/list.h"
26 typedef struct tagMSIFEATURE
30 LPWSTR Feature_Parent;
38 INSTALLSTATE Installed;
39 INSTALLSTATE ActionRequest;
42 struct list Components;
47 typedef struct tagMSICOMPONENT
58 INSTALLSTATE Installed;
59 INSTALLSTATE ActionRequest;
68 LPWSTR AdvertiseString;
71 typedef struct tagComponentList
74 MSICOMPONENT *component;
77 typedef struct tagMSIFOLDER
82 LPWSTR SourceLongPath;
83 LPWSTR SourceShortPath;
85 LPWSTR ResolvedTarget;
86 LPWSTR ResolvedSource;
87 LPWSTR Property; /* initially set property */
88 struct tagMSIFOLDER *Parent;
90 /* 0 = uninitialized */
92 /* 2 = created remove if empty */
93 /* 3 = created persist if empty */
98 typedef enum _msi_file_state {
107 typedef struct tagMSIFILE
111 MSICOMPONENT *Component;
120 msi_file_state state;
125 typedef struct tagMSITEMPFILE
132 typedef struct tagMSIAPPID
135 LPWSTR AppID; /* Primary key */
136 LPWSTR RemoteServerName;
138 LPWSTR ServiceParameters;
140 BOOL ActivateAtStorage;
141 BOOL RunAsInteractiveUser;
144 typedef struct tagMSIPROGID MSIPROGID;
146 typedef struct tagMSICLASS
149 LPWSTR clsid; /* Primary Key */
150 LPWSTR Context; /* Primary Key */
151 MSICOMPONENT *Component;
158 LPWSTR DefInprocHandler;
159 LPWSTR DefInprocHandler32;
163 /* not in the table, set during installation */
167 typedef struct tagMSIMIME MSIMIME;
169 typedef struct tagMSIEXTENSION
172 LPWSTR Extension; /* Primary Key */
173 MSICOMPONENT *Component;
178 /* not in the table, set during installation */
186 LPWSTR ProgID; /* Primary Key */
191 /* not in the table, set during installation */
194 MSIPROGID *VersionInd;
197 typedef struct tagMSIVERB
209 LPWSTR ContentType; /* Primary Key */
210 MSIEXTENSION *Extension;
213 /* not in the table, set during installation */
224 #define SEQUENCE_UI 0x1
225 #define SEQUENCE_EXEC 0x2
226 #define SEQUENCE_INSTALL 0x10
228 typedef struct tagMSISCRIPT
230 LPWSTR *Actions[TOTAL_SCRIPTS];
231 UINT ActionCount[TOTAL_SCRIPTS];
232 BOOL ExecuteSequenceRun;
233 BOOL CurrentlyScripting;
235 LPWSTR *UniqueActions;
236 UINT UniqueActionsCount;
240 extern UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force);
241 extern UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action);
242 extern void ACTION_FinishCustomActions( MSIPACKAGE* package);
243 extern UINT ACTION_CustomAction(MSIPACKAGE *package,const WCHAR *action, BOOL execute);
245 /* actions in other modules */
246 extern UINT ACTION_AppSearch(MSIPACKAGE *package);
247 extern UINT ACTION_FindRelatedProducts(MSIPACKAGE *package);
248 extern UINT ACTION_InstallFiles(MSIPACKAGE *package);
249 extern UINT ACTION_RemoveFiles(MSIPACKAGE *package);
250 extern UINT ACTION_DuplicateFiles(MSIPACKAGE *package);
251 extern UINT ACTION_RegisterClassInfo(MSIPACKAGE *package);
252 extern UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package);
253 extern UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package);
254 extern UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package);
258 extern DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data );
259 extern LPWSTR msi_dup_record_field(MSIRECORD *row, INT index);
260 extern LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop);
261 extern int msi_get_property_int( MSIPACKAGE *package, LPCWSTR prop, int def );
262 extern LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
263 BOOL set_prop, MSIFOLDER **folder);
264 extern MSICOMPONENT *get_loaded_component( MSIPACKAGE* package, LPCWSTR Component );
265 extern MSIFEATURE *get_loaded_feature( MSIPACKAGE* package, LPCWSTR Feature );
266 extern MSIFILE *get_loaded_file( MSIPACKAGE* package, LPCWSTR file );
267 extern MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir );
268 extern int track_tempfile(MSIPACKAGE *package, LPCWSTR name, LPCWSTR path);
269 extern UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action);
270 extern LPWSTR build_icon_path(MSIPACKAGE *, LPCWSTR);
271 extern LPWSTR build_directory_name(DWORD , ...);
272 extern BOOL create_full_pathW(const WCHAR *path);
273 extern BOOL ACTION_VerifyComponentForAction(MSICOMPONENT*, INSTALLSTATE);
274 extern BOOL ACTION_VerifyFeatureForAction(MSIFEATURE*, INSTALLSTATE);
275 extern void reduce_to_longfilename(WCHAR*);
276 extern void reduce_to_shortfilename(WCHAR*);
277 extern LPWSTR create_component_advertise_string(MSIPACKAGE*, MSICOMPONENT*, LPCWSTR);
278 extern void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature);
279 extern UINT register_unique_action(MSIPACKAGE *, LPCWSTR);
280 extern BOOL check_unique_action(MSIPACKAGE *, LPCWSTR);
281 extern WCHAR* generate_error_string(MSIPACKAGE *, UINT, DWORD, ... );
282 extern UINT msi_create_component_directories( MSIPACKAGE *package );
285 /* control event stuff */
286 extern VOID ControlEvent_FireSubscribedEvent(MSIPACKAGE *package, LPCWSTR event,
288 extern VOID ControlEvent_CleanupSubscriptions(MSIPACKAGE *package);
289 extern VOID ControlEvent_SubscribeToEvent(MSIPACKAGE *package, LPCWSTR event,
290 LPCWSTR control, LPCWSTR attribute);
291 extern VOID ControlEvent_UnSubscribeToEvent( MSIPACKAGE *package, LPCWSTR event,
292 LPCWSTR control, LPCWSTR attribute );
294 /* User Interface messages from the actions */
295 extern void ui_progress(MSIPACKAGE *, int, int, int, int);
296 extern void ui_actiondata(MSIPACKAGE *, LPCWSTR, MSIRECORD *);
299 /* string consts use a number of places and defined in helpers.c*/
300 extern const WCHAR cszSourceDir[];
301 extern const WCHAR szProductCode[];
302 extern const WCHAR cszRootDrive[];
303 extern const WCHAR cszbs[];
305 #endif /* __MSI_ACTION_H__ */