]> git.tdb.fi Git - libs/core.git/blob - source/debug/debugapi.h
Add utilities to interface with an attached debugger
[libs/core.git] / source / debug / debugapi.h
1 #ifndef MSP_DEBUG_DEBUGAPI_H_
2 #define MSP_DEBUG_DEBUGAPI_H_
3
4 namespace Msp {
5 namespace Debug {
6
7 enum DebuggerType
8 {
9         NONE,
10         GDB,
11         UNKNOWN,
12 };
13
14 DebuggerType check_debugger(bool = false);
15 void debug_break();
16
17 } // namespace Debug
18 } // namespace Msp
19
20 #endif