Better backward compatibility ($LANGUAGE is now last in the user variables array)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@724 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
5e18d63dd4
commit
e03691a6fa
1 changed files with 5 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
|||
extern char g_usrvars[25][NSIS_MAX_STRLEN];
|
||||
#define state_language (g_usrvars[20])
|
||||
#define state_command_line (g_usrvars[21])
|
||||
#define state_install_directory (g_usrvars[22])
|
||||
#define state_output_directory (g_usrvars[23])
|
||||
#define state_exe_directory (g_usrvars[24])
|
||||
#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_language (g_usrvars[24])
|
||||
|
||||
extern char g_caption[NSIS_MAX_STRLEN*2];
|
||||
extern HWND g_hwnd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue