tdlight/tdutils/td/utils/port/wstring_convert.h
levlam 18818fd4ff Use CSlice in to_wstring.
GitOrigin-RevId: 53f77206fbc34cd68036f994a7ee90fda2b1b636
2018-05-18 17:22:18 +03:00

32 lines
698 B
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// 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