use new plug-in library wherever possible, which is not a lot...
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5840 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a924c4d2d3
commit
e59407720a
4 changed files with 64 additions and 114 deletions
|
@ -1,57 +1,13 @@
|
|||
#ifndef ___PLUGIN__H___
|
||||
#define ___PLUGIN__H___
|
||||
|
||||
typedef struct _stack_t {
|
||||
struct _stack_t *next;
|
||||
char text[1]; // this should be the length of string_size
|
||||
} 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
|
||||
};
|
||||
|
||||
typedef UINT_PTR (*NSISPLUGINCALLBACK)(UINT);
|
||||
|
||||
typedef struct {
|
||||
void *exec_flags;
|
||||
int (__stdcall *ExecuteCodeSegment)(int, HWND);
|
||||
void (__stdcall *validate_filename)(char *);
|
||||
BOOL (__stdcall *RegisterPluginCallback)(HMODULE, NSISPLUGINCALLBACK);
|
||||
} extra_parameters;
|
||||
#include <plugin.h> // nsis plug-in...
|
||||
|
||||
#define PLUGINFUNCTION(name) \
|
||||
void __declspec(dllexport) name( \
|
||||
HWND hwndParent, int string_size, char *variables, stack_t **stacktop, extra_parameters *extra) { \
|
||||
/*g_hwndParent=hwndParent;*/ \
|
||||
g_stringsize=string_size; \
|
||||
g_stacktop=stacktop; \
|
||||
g_variables=variables; \
|
||||
EXDLL_INIT(); \
|
||||
extra->RegisterPluginCallback(g_hInstance, NSISCallback);
|
||||
#define PLUGINFUNCTIONEND }
|
||||
|
||||
|
@ -62,23 +18,20 @@ typedef struct {
|
|||
extern char *AllocStr(char *str);
|
||||
extern void myitoa64(__int64 i, char *buffer);
|
||||
extern char *AllocString();
|
||||
extern char *getuservariable(int varnum);
|
||||
extern char *setuservariable(int varnum, char *var);
|
||||
extern char* popstring(); // NULL - stack empty
|
||||
extern char* pushstring(char *str);
|
||||
extern __int64 myatoi(char *s);
|
||||
extern int popint(); // -1 -> stack empty
|
||||
extern void pushint(int value);
|
||||
extern char *system_getuservariable(int varnum);
|
||||
extern char *system_setuservariable(int varnum, char *var);
|
||||
extern char* system_popstring(); // NULL - stack empty
|
||||
extern char* system_pushstring(char *str);
|
||||
extern __int64 myatoi64(char *s);
|
||||
extern int popint64(); // -1 -> stack empty
|
||||
extern void system_pushint(int value);
|
||||
|
||||
extern HANDLE GlobalCopy(HANDLE Old);
|
||||
extern char *copymem(char *output, char *input, int size);
|
||||
|
||||
extern UINT_PTR NSISCallback(UINT);
|
||||
extern UINT_PTR NSISCallback(enum NSPIM);
|
||||
|
||||
extern HWND g_hwndParent;
|
||||
extern int g_stringsize;
|
||||
extern stack_t **g_stacktop;
|
||||
extern char *g_variables;
|
||||
extern HINSTANCE g_hInstance;
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue