blob: 331d2bce1ae2318a5635502c599dcaf1c245d891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "cru_debug.hpp"
#include "system_headers.hpp"
namespace cru::debug {
#ifdef CRU_DEBUG
void DebugMessage(const StringView& message) {
::OutputDebugStringW(message.data());
}
#endif
} // namespace cru::debug
|