blob: cdff7963fa6b3719f06cfe09ecafefcc04e776d0 (
plain)
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::debug {
void DebugMessage(const std::wstring_view& message) {
::OutputDebugStringW(message.data());
}
} // namespace cru::debug
|