aboutsummaryrefslogtreecommitdiff
path: root/src/platform_win/debug.cpp
blob: f52d41bdc58b487506a6d932ec979e537d7c1a2b (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::platform::debug {
void DebugMessage(const std::wstring_view& message) {
  ::OutputDebugStringW(message.data());
}
}  // namespace cru::debug