mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-02 01:47:37 +08:00
Drop C prefix on Windows
This commit is contained in:
@@ -22,37 +22,37 @@
|
||||
#include <Windows.h>
|
||||
#include <string>
|
||||
|
||||
CMSWindowsDebugOutputter::CMSWindowsDebugOutputter()
|
||||
MSWindowsDebugOutputter::MSWindowsDebugOutputter()
|
||||
{
|
||||
}
|
||||
|
||||
CMSWindowsDebugOutputter::~CMSWindowsDebugOutputter()
|
||||
MSWindowsDebugOutputter::~MSWindowsDebugOutputter()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
CMSWindowsDebugOutputter::open(const char* title)
|
||||
MSWindowsDebugOutputter::open(const char* title)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
CMSWindowsDebugOutputter::close()
|
||||
MSWindowsDebugOutputter::close()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
CMSWindowsDebugOutputter::show(bool showIfEmpty)
|
||||
MSWindowsDebugOutputter::show(bool showIfEmpty)
|
||||
{
|
||||
}
|
||||
|
||||
bool
|
||||
CMSWindowsDebugOutputter::write(ELevel level, const char* msg)
|
||||
MSWindowsDebugOutputter::write(ELevel level, const char* msg)
|
||||
{
|
||||
OutputDebugString((std::string(msg) + "\n").c_str());
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
CMSWindowsDebugOutputter::flush()
|
||||
MSWindowsDebugOutputter::flush()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user