19 Sep
2017
19 Sep
'17
9:34 a.m.
On Tue, 2017-09-19 at 00:23 -0500, Zebediah Figura wrote:
+struct action +{ + struct list entry; + WCHAR *action; +}; + typedef struct tagMSIPACKAGE { MSIOBJECTHDR hdr; @@ -403,7 +418,10 @@ typedef struct tagMSIPACKAGE struct list mimes; struct list appids;
- struct tagMSISCRIPT *script; + struct list script_actions[SCRIPT_MAX]; + struct list unique_actions; + BOOL ExecuteSequenceRun; + UINT InWhatSequence;
Why? The package structure is heavy on lists already, some of these should be moved to arrays instead...