Comments like C/C++; Added commands to support VersionInformation (VIProductVersion, VIProductName, VICompanyName, VIComments, VILegalTrademarks, VILegalCopyrights, VIDescription); Support to named user variables (up to 500) but disabled by define

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2623 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
ramon18 2003-06-09 18:59:14 +00:00
parent c5c57c0fdb
commit f758230f19
14 changed files with 823 additions and 128 deletions

View file

@ -169,6 +169,13 @@ class CEXEBuild {
bool next_used, install_used, comppage_used, license_force_radio_used, register_used, unregister_used;
int GetUserVarIndex(LineParser &line, int token);
// Added by ramon 3 jun 2003
#ifdef NSIS_SUPPORT_NAMED_USERVARS
LangStringList m_UserVarNames;
int DeclaredUserVar(const char *VarName);
#endif
// a whole bunch O data.
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
@ -203,6 +210,17 @@ class CEXEBuild {
char build_output_filename[1024];
char cur_out_path[1024];
// Added by ramon 6 jun 2003
#ifdef NSIS_SUPPORT_VERSION_INFO
char szVIProductVersion[1024];
char szVIProductName[1024];
char szVICompanyName[1024];
char szVIComments[1024];
char szVILegalTrademarks[1024];
char szVILegalCopyrights[1024];
char szVIDescription[1024];
#endif
int subsection_open_cnt;
FastStringList m_warnings;
GrowBuf m_macros;