aboutsummaryrefslogtreecommitdiff
path: root/src/win/debug.cpp
blob: e15b1f6c2b8546a690352fe122cdd5195a9c9cc0 (plain)
1
2
3
4
5
6
7
8
9
#include "cru/win/win_pre_config.hpp"

#include "cru/platform/debug.hpp"

namespace cru::platform {
void DebugMessage(const std::wstring_view& message) {
  ::OutputDebugStringW(message.data());
}
}  // namespace cru::platform