mirror of https://github.com/mgba-emu/mgba.git
Util: Removed broken dllexport symbol
This commit is contained in:
parent
c9c80df433
commit
98d2671c6d
|
@ -222,7 +222,6 @@ typedef intptr_t ssize_t;
|
||||||
#define _CONSTRUCTOR(FN, PRE) \
|
#define _CONSTRUCTOR(FN, PRE) \
|
||||||
static void FN(void); \
|
static void FN(void); \
|
||||||
__declspec(allocate(".CRT$XCU")) void (*_CONSTRUCTOR_ ## FN)(void) = FN; \
|
__declspec(allocate(".CRT$XCU")) void (*_CONSTRUCTOR_ ## FN)(void) = FN; \
|
||||||
__pragma(comment(linker,"/include:" PRE "_CONSTRUCTOR_" #FN)) \
|
|
||||||
static void FN(void)
|
static void FN(void)
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
#define CONSTRUCTOR(FN) _CONSTRUCTOR(FN, "")
|
#define CONSTRUCTOR(FN) _CONSTRUCTOR(FN, "")
|
||||||
|
|
Loading…
Reference in New Issue