
- SetOutPath now sets the current directory (RegDLL no longer does) - File names are now validated for commands that need normal files, the directory selection dialog, and every variable that contains a file/dir name - Fixed a distortion of the MUI's branding text with ClearType - $INSTDIR is now right in the custom page after the directory selection dialog - No more squares in the automatically appended directory name in the directory selection dialog - Size optimizations git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2121 212acab6-be3b-0410-9dea-997c60f758d6
18 lines
319 B
C
18 lines
319 B
C
#ifndef _EXEC_H_
|
|
#define _EXEC_H_
|
|
|
|
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;
|
|
|
|
int NSISCALL ExecuteCodeSegment(int pos, HWND hwndProgress); // returns 0 on success
|
|
|
|
#endif//_EXEC_H_
|