Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
489 B

  1. // wclog -- initialize standard wide error stream
  2. // This wclog is unsigned short version of wclog
  3. #ifdef _NATIVE_WCHAR_T_DEFINED
  4. #include <fstream>
  5. #include <istream>
  6. #define wistream ushistream
  7. #define wostream ushostream
  8. #define wfilebuf ushfilebuf
  9. #define _Init_wcerr _Init_ushcerr
  10. #define _Init_wcout _Init_ushcout
  11. #define _Init_wclog _Init_ushclog
  12. #define _Init_wcin _Init_ushcin
  13. #define _Winit _UShinit
  14. #include <iostream>
  15. #include "wclog.cpp"
  16. #endif