aboutsummaryrefslogtreecommitdiff
path: root/src/cru_debug.cpp
blob: 9c61d0520279b8a7049d6cfd0846723dc4fe041b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "cru_debug.hpp"

#include "system_headers.hpp"

namespace cru::debug
{
    void DebugMessage(const StringView& message)
    {
        ::OutputDebugStringW(message.data());
    }
}