// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/utils/port/config.h" #if TD_PORT_WINDOWS #include "td/utils/common.h" #include "td/utils/Slice.h" #include "td/utils/Status.h" #include namespace td { Result to_wstring(CSlice slice); Result from_wstring(const std::wstring &str); Result from_wstring(const wchar_t *begin, size_t size); Result from_wstring(const wchar_t *begin); } // namespace td #endif