mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
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:
parent
a10cda2f17
commit
97f34ab668
14 changed files with 71 additions and 61 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue