moved NSIS_STRING from config.h to fileform.h
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4541 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
c6181097f2
commit
688b994b45
3 changed files with 6 additions and 2 deletions
|
@ -134,8 +134,6 @@
|
||||||
#define NSIS_DEFAULT_LANG 1033
|
#define NSIS_DEFAULT_LANG 1033
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef char NSIS_STRING[NSIS_MAX_STRLEN];
|
|
||||||
|
|
||||||
#endif//!APSTUDIO_INVOKED
|
#endif//!APSTUDIO_INVOKED
|
||||||
|
|
||||||
#endif // NSIS_CONFIG_H
|
#endif // NSIS_CONFIG_H
|
||||||
|
|
|
@ -255,6 +255,10 @@ enum {
|
||||||
BLOCKS_NUM
|
BLOCKS_NUM
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// nsis strings
|
||||||
|
|
||||||
|
typedef char NSIS_STRING[NSIS_MAX_STRLEN];
|
||||||
|
|
||||||
// Settings common to both installers and uninstallers
|
// Settings common to both installers and uninstallers
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include "fileform.h"
|
||||||
|
|
||||||
extern NSIS_STRING g_usrvars[1];
|
extern NSIS_STRING g_usrvars[1];
|
||||||
|
|
||||||
#define state_command_line g_usrvars[20]
|
#define state_command_line g_usrvars[20]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue