New exec plugin (broke)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@920 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
8dcb0e237f
commit
a659c508b1
6 changed files with 378 additions and 0 deletions
46
Contrib/nsExec/nsis.h
Normal file
46
Contrib/nsExec/nsis.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
#ifndef nsis_h
|
||||
#define nsis_h
|
||||
|
||||
typedef struct _stack_t {
|
||||
struct _stack_t *next;
|
||||
char text[1];
|
||||
} stack_t;
|
||||
|
||||
enum {
|
||||
INST_0, // $0
|
||||
INST_1, // $1
|
||||
INST_2, // $2
|
||||
INST_3, // $3
|
||||
INST_4, // $4
|
||||
INST_5, // $5
|
||||
INST_6, // $6
|
||||
INST_7, // $7
|
||||
INST_8, // $8
|
||||
INST_9, // $9
|
||||
INST_R0, // $R0
|
||||
INST_R1, // $R1
|
||||
INST_R2, // $R2
|
||||
INST_R3, // $R3
|
||||
INST_R4, // $R4
|
||||
INST_R5, // $R5
|
||||
INST_R6, // $R6
|
||||
INST_R7, // $R7
|
||||
INST_R8, // $R8
|
||||
INST_R9, // $R9
|
||||
INST_CMDLINE, // $CMDLINE
|
||||
INST_INSTDIR, // $INSTDIR
|
||||
INST_OUTDIR, // $OUTDIR
|
||||
INST_EXEDIR, // $EXEDIR
|
||||
INST_LANG, // $LANGUAGE
|
||||
__INST_LAST
|
||||
};
|
||||
|
||||
int g_stringsize;
|
||||
stack_t ** g_stacktop;
|
||||
char * g_variables;
|
||||
|
||||
int popstring(char *str);
|
||||
void pushstring(char *str);
|
||||
char * getuservariable(int varnum);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue