don't typedef struct twice
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4014 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
2df21c3e90
commit
8b1fa1b3c7
2 changed files with 4 additions and 4 deletions
|
@ -4,11 +4,11 @@
|
|||
#include "Buffers.h"
|
||||
|
||||
typedef struct tagTempStack TempStack;
|
||||
typedef struct tagTempStack
|
||||
struct tagTempStack
|
||||
{
|
||||
TempStack *Next;
|
||||
char Data[0];
|
||||
} TempStack;
|
||||
};
|
||||
TempStack *tempstack = NULL;
|
||||
|
||||
PLUGINFUNCTIONSHORT(Alloc)
|
||||
|
|
|
@ -73,7 +73,7 @@ typedef struct
|
|||
// Our single proc (Since the user will free proc with GlobalFree,
|
||||
// I've declared all variables as statics)
|
||||
typedef struct tag_SystemProc SystemProc;
|
||||
typedef struct tag_SystemProc
|
||||
struct tag_SystemProc
|
||||
{
|
||||
int ProcType;
|
||||
int ProcResult;
|
||||
|
@ -91,7 +91,7 @@ typedef struct tag_SystemProc
|
|||
int ArgsSize;
|
||||
// Clone of current element (used for multi-level callbacks)
|
||||
SystemProc *Clone;
|
||||
} SystemProc;
|
||||
};
|
||||
|
||||
extern const int ParamSizeByType[]; // Size of every parameter type (*4 bytes)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue