Drop C prefix on Windows

This commit is contained in:
Xinyu Hou
2014-11-12 11:44:29 +00:00
parent e5e0a3b653
commit 9fd11da578
48 changed files with 555 additions and 555 deletions

View File

@@ -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()
{
}