aboutsummaryrefslogtreecommitdiff
path: root/src/cru_debug.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-11-07 17:23:43 +0800
committercrupest <crupest@outlook.com>2018-11-07 17:23:43 +0800
commit9f7de7f0775b86e3c82d4c5e3427a6f2fd98810b (patch)
tree6184328d03e1963c8897a9e91f2c990dcfae053d /src/cru_debug.cpp
parentdf0d6e1e282c75d4d8154011715f0b74547b35db (diff)
downloadcru-9f7de7f0775b86e3c82d4c5e3427a6f2fd98810b.tar.gz
cru-9f7de7f0775b86e3c82d4c5e3427a6f2fd98810b.tar.bz2
cru-9f7de7f0775b86e3c82d4c5e3427a6f2fd98810b.zip
Improve layout system.
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());
+ }
+}