Added global::cerr. windows.h now included from common.h

We replaced most of std::cerr with global::cerr.  windows.h is now
included from common.h. Before including it, we define WINVER.  We
renamed some variable name because some macros in windows.h collide
with them.
This commit is contained in:
Tatsuhiro Tsujikawa 2011-08-10 00:38:48 +09:00
parent a10cda2f17
commit 97f34ab668
14 changed files with 71 additions and 61 deletions

View file

@ -44,13 +44,24 @@ SharedHandle<WinConsoleFile> cout;
SharedHandle<BufferedFile> cout;
#endif // !__MINGW32__
#ifdef __MINGW32__
SharedHandle<WinConsoleFile> cerr;
#else // !__MINGW32__
SharedHandle<BufferedFile> cerr;
#endif // !__MINGW32__
void initConsole()
{
#ifdef __MINGW32__
cout.reset(new WinConsoleFile());
cout.reset(new WinConsoleFile(STD_INPUT_HANDLE));
#else // !__MINGW32__
cout.reset(new BufferedFile(stdout));
#endif // !__MINGW32__
#ifdef __MINGW32__
cerr.reset(new WinConsoleFile(STD_ERROR_HANDLE));
#else // !__MINGW32__
cerr.reset(new BufferedFile(stderr));
#endif // !__MINGW32__
}
} // namespace global