32 lines
698 B
C++
32 lines
698 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
|
//
|
|
// 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 <string>
|
|
|
|
namespace td {
|
|
|
|
Result<std::wstring> to_wstring(CSlice slice);
|
|
|
|
Result<string> from_wstring(const std::wstring &str);
|
|
|
|
Result<string> from_wstring(const wchar_t *begin, size_t size);
|
|
|
|
Result<string> from_wstring(const wchar_t *begin);
|
|
|
|
} // namespace td
|
|
|
|
#endif
|