// Copyright (c) Microsoft Corporation. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // _Winit members #include _STD_BEGIN __PURE_APPDOMAIN_GLOBAL int _Winit::_Init_cnt = -1; _CRTIMP2_PURE __thiscall _Winit::_Winit() { // initialize standard wide streams first time if (0 <= _Init_cnt) { ++_Init_cnt; } else { _Init_cnt = 1; } } _CRTIMP2_PURE __thiscall _Winit::~_Winit() noexcept { // flush standard wide streams last time if (--_Init_cnt == 0) { // flush standard wide streams if (_Ptr_wcout != nullptr) { _Ptr_wcout->flush(); } if (_Ptr_wcerr != nullptr) { _Ptr_wcerr->flush(); } if (_Ptr_wclog != nullptr) { _Ptr_wclog->flush(); } } _STD_END }