Loading...
Searching...
No Matches
Go to the documentation of this file.
21#ifndef _USE_MATH_DEFINES
22#define _USE_MATH_DEFINES
31#define __INIT_FINI(initfn, finifn) \
32BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved) \
36 case DLL_PROCESS_ATTACH: \
39 case DLL_PROCESS_DETACH: \
48#define __CONSTRUCTOR __attribute__((constructor))
49#define __DESTRUCTOR __attribute__((destructor))
50#define __INIT_FINI(init, fini)