|
| bool | enableDebugOutput () noexcept |
| | Enables writing to OutputDebugString(). More...
|
| |
| bool | enableConsoleOutput () noexcept |
| | Shows a console window and enables writing to it. More...
|
| |
| bool | enableFileOutput (const wchar_t *fileName) noexcept |
| | Enables writing to a file. More...
|
| |
| void | shutdownDebugOutput () noexcept |
| | Flush buffers and free resources. More...
|
| |
| void | write (const wchar_t *str, bool newline=false) noexcept |
| | Write debug string. More...
|
| |
| void | writef (const wchar_t *fmt,...) noexcept |
| | Write debug message using format string like printf. More...
|
| |
| void | writef (const char *fmt,...) noexcept |
| | Write debug message using format string like printf. More...
|
| |
| void | writef_nonl (const wchar_t *fmt,...) noexcept |
| | Write debug message using format string like printf. (No new line) More...
|
| |
| void | writef_nonl (const char *fmt,...) noexcept |
| | Write debug message using format string like printf. (No new line) More...
|
| |
| void | write (const char *str, bool newline=false) noexcept |
| | Write debug string. More...
|
| |
| void | writeLine (const wchar_t *str=L"") noexcept |
| | Write debug string and new line. More...
|
| |
| void | writeLine (const char *str) noexcept |
| | Write debug string and new line. More...
|
| |