aboutsummaryrefslogtreecommitdiff
path: root/src/cru_debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cru_debug.cpp')
-rw-r--r--src/cru_debug.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cru_debug.cpp b/src/cru_debug.cpp
new file mode 100644
index 00000000..0007d21b
--- /dev/null
+++ b/src/cru_debug.cpp
@@ -0,0 +1,11 @@
+#include "cru_debug.h"
+
+#include "system_headers.h"
+
+namespace cru::debug
+{
+ void DebugMessage(const StringView& message)
+ {
+ ::OutputDebugStringW(message.data());
+ }
+}