
- .onSelChange no longer called when the components page is created - First section is selected at compile time - changes in .onInit stick - Added SectionSetSize / SectionGetSize - Added SetCurInstType / GetCurInstType - Added InstTypeSetText / InstTypeGetText - ability to change (and add and remove) installation types on runtime - NSIS_MAX_INST_TYPES is now 32 by default - InstType texts are now processed ($0, $1, etc. can be used) - Added /o switch for Section - unselected by default git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2563 212acab6-be3b-0410-9dea-997c60f758d6
20 lines
No EOL
532 B
C
20 lines
No EOL
532 B
C
extern char temp_directory[NSIS_MAX_STRLEN];
|
|
|
|
extern char g_usrvars[26][NSIS_MAX_STRLEN];
|
|
extern char *state_command_line;
|
|
extern char *state_install_directory;
|
|
extern char *state_output_directory;
|
|
extern char *state_exe_directory;
|
|
extern char *state_language;
|
|
#ifdef NSIS_CONFIG_PLUGIN_SUPPORT
|
|
extern char *state_plugins_dir;
|
|
#endif
|
|
|
|
extern char g_caption[NSIS_MAX_STRLEN*2];
|
|
extern HWND g_hwnd;
|
|
extern int g_filehdrsize;
|
|
extern HANDLE g_hInstance;
|
|
extern HWND insthwnd,insthwndbutton;
|
|
extern HICON g_hIcon;
|
|
|
|
extern int inst_flags; |