This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef good_assert /* Better assert() for Windows - public domain */ | |
| #ifdef _WIN32 | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| #ifndef _WINDOWS_ | |
| __declspec(dllimport) int __stdcall ExitProcess(unsigned int a); | |
| __declspec(dllimport) int __stdcall MessageBoxA(void *a, const char *b, | |
| const char *c, unsigned int d); | |
| #endif /* _WINDOWS_ */ |