2002-08-02 10:01:35 +00:00
|
|
|
#ifndef _EXEC_H_
|
|
|
|
#define _EXEC_H_
|
|
|
|
|
2003-02-07 23:04:25 +00:00
|
|
|
extern union flags {
|
|
|
|
struct {
|
|
|
|
int autoclose;
|
|
|
|
int all_user_var;
|
|
|
|
int exec_error;
|
|
|
|
#ifdef NSIS_SUPPORT_REBOOT
|
|
|
|
int exec_reboot;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
int flags[1];
|
|
|
|
} g_flags;
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2003-02-07 23:04:25 +00:00
|
|
|
int NSISCALL ExecuteCodeSegment(int pos, HWND hwndProgress); // returns 0 on success
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2002-08-19 23:18:19 +00:00
|
|
|
#endif//_EXEC_H_
|