0.5KB saving

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@765 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-28 10:08:38 +00:00
parent 4f1efc6c40
commit c8e693e95b
3 changed files with 228 additions and 211 deletions

View file

@ -1,8 +1,14 @@
extern char g_usrvars[24][NSIS_MAX_STRLEN];
#define state_command_line (g_usrvars[20])
/*#define state_command_line (g_usrvars[20])
#define state_install_directory (g_usrvars[21])
#define state_output_directory (g_usrvars[22])
#define state_exe_directory (g_usrvars[23])
#define state_exe_directory (g_usrvars[23])*/
// 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 g_caption[NSIS_MAX_STRLEN*2];
extern HWND g_hwnd;