Util: Removed broken dllexport symbol

This commit is contained in:
Arves100 2019-06-21 00:21:25 +02:00 committed by endrift
parent c9c80df433
commit 98d2671c6d
1 changed files with 0 additions and 1 deletions

View File

@ -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, "")