1 2 3 4 5 6 7 8 9 10
#include "cru/platform/win/win_pre_config.hpp" #include "cru/platform/debug.hpp" namespace cru::platform::debug { void DebugMessage(const std::wstring_view& message) { ::OutputDebugStringW(message.data()); } } // namespace cru::debug