Stricter compiler parameter validation of SectionGet/Set* commands
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6462 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
8d7dd2cf9f
commit
5d4c8eb40f
7 changed files with 35 additions and 19 deletions
|
@ -32,10 +32,10 @@ class LineParser {
|
|||
int parse(TCHAR *line, int ignore_escaping=0); // returns -1 on error
|
||||
int getnumtokens();
|
||||
void eattoken();
|
||||
double gettoken_float(int token, int *success=0);
|
||||
int gettoken_int(int token, int *success=0);
|
||||
double gettoken_number(int token, int *success=0);
|
||||
TCHAR *gettoken_str(int token);
|
||||
double gettoken_float(int token, int *success=0) const;
|
||||
int gettoken_int(int token, int *success=0) const;
|
||||
double gettoken_number(int token, int *success=0) const;
|
||||
TCHAR *gettoken_str(int token) const;
|
||||
int gettoken_enum(int token, const TCHAR *strlist); // null separated list
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue