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