| 7944 | extern "C" __declspec(dllimport) void __stdcall OutputDebugStringA( const char* ); |
| 7945 | namespace Catch { |
| 7946 | void writeToDebugConsole( std::string const& text ) { |
| 7947 | ::OutputDebugStringA( text.c_str() ); |
| 7948 | } |
| 7949 | } |
| 7950 | #else |
| 7951 | namespace Catch { |