1 2 3 4 5 6 7 8 9 10 11
#include "cru_debug.hpp" #include "system_headers.hpp" namespace cru::debug { void DebugMessage(const StringView& message) { ::OutputDebugStringW(message.data()); } }