14 lines
195 B
C
14 lines
195 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#include <windows.h>
|
||
|
#define DEBUG_BREAK() DebugBreak()
|
||
|
#else
|
||
|
#include <csignal>
|
||
|
#define DEBUG_BREAK() raise(SIGTRAP)
|
||
|
#endif
|
||
|
|
||
|
#ifndef APIENTRY
|
||
|
#define APIENTRY
|
||
|
#endif
|