// wclog -- initialize standard wide log stream #include #include #pragma warning(disable: 4074) #pragma init_seg(compiler) static std::_Init_locks initlocks; _STD_BEGIN // OBJECT DECLARATIONS __PURE_APPDOMAIN_GLOBAL static wfilebuf wflog(_cpp_stderr); __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 wostream wclog(&wflog); _MRTIMP2 wostream& __cdecl _Wclog_func() { return wclog; } // INITIALIZATION CODE struct _Init_wclog { // ensures that wclog is initialized __CLR_OR_THIS_CALL _Init_wclog() { // initialize wclog _Ptr_wclog = &wclog; wclog.tie(_Ptr_wcout); } }; __PURE_APPDOMAIN_GLOBAL static _Init_wclog init_wclog; _STD_END /* * Copyright (c) 1992-2005 by P.J. Plauger. ALL RIGHTS RESERVED. * Consult your license regarding permissions and restrictions. V4.05:0009 */