24 lines
632 B
C++
24 lines
632 B
C++
// ushiostream -- _UShinit members, dummy for Microsoft
|
|
// unsigned short version for wiostram
|
|
#ifdef _NATIVE_WCHAR_T_DEFINED
|
|
#include <fstream>
|
|
#include <istream>
|
|
#define wistream ushistream
|
|
#define wostream ushostream
|
|
#define wfilebuf ushfilebuf
|
|
#define _Init_wcerr _Init_ushcerr
|
|
#define _Init_wcout _Init_ushcout
|
|
#define _Init_wclog _Init_ushclog
|
|
#define _Init_wcin _Init_ushcin
|
|
#define _Winit _UShinit
|
|
#include <iostream>
|
|
|
|
_STD_BEGIN
|
|
_CRTIMP2 wistream *_Ptr_wcin = 0;
|
|
_CRTIMP2 wostream *_Ptr_wcout = 0;
|
|
_CRTIMP2 wostream *_Ptr_wcerr = 0;
|
|
_CRTIMP2 wostream *_Ptr_wclog = 0;
|
|
_STD_END
|
|
#include "wiostrea.cpp"
|
|
#endif
|