+// ----------------------------------------------------------------------------
+// other miscellaneous debugger-related functions
+// ----------------------------------------------------------------------------
+
+// return true if we're running under debugger
+//
+// currently this only really works under Mac in CodeWarrior builds, it always
+// returns false otherwise
+#ifdef __cplusplus
+ #ifdef __WXMAC__
+ extern bool WXDLLIMPEXP_BASE wxIsDebuggerRunning();
+ #else // !Mac
+ inline bool wxIsDebuggerRunning() { return false; }
+ #endif // Mac/!Mac
+#endif //__cplusplus
+