| 6815 | extern "C" __declspec(dllimport) void __stdcall OutputDebugStringA( const char* ); |
| 6816 | namespace Catch { |
| 6817 | void writeToDebugConsole( std::string const& text ) { |
| 6818 | ::OutputDebugStringA( text.c_str() ); |
| 6819 | } |
| 6820 | } |
| 6821 | #else |
| 6822 | namespace Catch { |