
+ Some documentation fixes + Transition between a normal page and a custom page no longer causes a flicker (between two custom pages it still does) + The completed sub-caption shows again git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1853 212acab6-be3b-0410-9dea-997c60f758d6
20 lines
No EOL
586 B
C
20 lines
No EOL
586 B
C
#ifdef NSIS_CONFIG_PLUGIN_SUPPORT
|
|
extern char plugins_temp_dir[NSIS_MAX_STRLEN];
|
|
#endif
|
|
extern char temp_directory[NSIS_MAX_STRLEN];
|
|
|
|
extern char g_usrvars[25][NSIS_MAX_STRLEN];
|
|
// changed by Amir Szekely 28th August 2002
|
|
// smaller exehead
|
|
extern char *state_command_line;
|
|
extern char *state_install_directory;
|
|
extern char *state_output_directory;
|
|
extern char *state_exe_directory;
|
|
extern char *state_language;
|
|
|
|
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; |