move definitions common to both plug-ins and stubs to api.h (part of patch #2359978)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5815 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-12-09 22:53:39 +00:00
parent f6e4fefbf5
commit 4859b8702e
5 changed files with 5 additions and 60 deletions

View file

@ -16,6 +16,7 @@
#include "config.h"
#include "../Platform.h"
#include "api.h"
#ifndef _FILEFORM_H_
#define _FILEFORM_H_
@ -484,33 +485,6 @@ typedef struct {
#define NSIS_INSTDIR_INVALID 1
#define NSIS_INSTDIR_NOT_ENOUGH_SPACE 2
typedef struct
{
int autoclose;
int all_user_var;
int exec_error;
int abort;
#ifdef NSIS_SUPPORT_REBOOT
int exec_reboot;
int reboot_called;
#else
int _;
int __;
#endif
int XXX_cur_insttype; // depreacted
int plugin_api_version; // used to be XXX_insttype_changed, but that was deprecated
#ifdef NSIS_CONFIG_SILENT_SUPPORT
int silent;
#else
int ___;
#endif
int instdir_error;
int rtl;
int errlvl;
int alter_reg_view;
int status_update;
} exec_flags;
#define FIELDN(x, y) (((int *)&x)[y])
#ifdef EXEHEAD