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

#include "system_headers.h"

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