#pragma once #ifdef _WIN32 #include #define DEBUG_BREAK() DebugBreak() #else #include #define DEBUG_BREAK() raise(SIGTRAP) #endif #ifndef APIENTRY #define APIENTRY #endif