Added attribution for __debugbreak()

This commit is contained in:
Phil Nash 2011-02-16 19:22:29 +00:00
parent 73acd945cd
commit ab30ab6b76
1 changed files with 4 additions and 3 deletions

View File

@ -79,6 +79,7 @@
#endif
#elif defined(__WIN32__) && defined(_MSC_VER)
// Thanks to jalfd for the following:
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); }
#else