DBG: downgraded plugin SDK version again (1 byte alignment not needed), now FORCE default alignment
This commit is contained in:
parent
7bf164d8a5
commit
faf53de72a
|
|
@ -3,7 +3,12 @@
|
|||
|
||||
#include <windows.h>
|
||||
|
||||
#pragma pack(push, 1)
|
||||
//default structure alignments forced
|
||||
#ifdef _WIN64
|
||||
#pragma pack(push, 16)
|
||||
#else //x86
|
||||
#pragma pack(push, 8)
|
||||
#endif //_WIN64
|
||||
|
||||
#ifdef _WIN64
|
||||
typedef unsigned long long duint;
|
||||
|
|
|
|||
|
|
@ -11,10 +11,15 @@
|
|||
|
||||
#include "_plugin_types.h"
|
||||
|
||||
#pragma pack(push, 1)
|
||||
//default structure alignments forced
|
||||
#ifdef _WIN64
|
||||
#pragma pack(push, 16)
|
||||
#else //x86
|
||||
#pragma pack(push, 8)
|
||||
#endif //_WIN64
|
||||
|
||||
//defines
|
||||
#define PLUG_SDKVERSION 2
|
||||
#define PLUG_SDKVERSION 1
|
||||
|
||||
//structures
|
||||
struct PLUG_INITSTRUCT
|
||||
|
|
|
|||
Loading…
Reference in New Issue