blob: 8fb119a9e6d9fa26d3e437e9572d0e0e12fe6918 [file] [log] [blame]
Austin Orion0bb354c2020-10-29 11:30:10 -07001/*
2 * Copyright (c) 2020 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef RTC_BASE_WIN_HSTRING_H_
12#define RTC_BASE_WIN_HSTRING_H_
13
14#include <hstring.h>
15#include <stdint.h>
16#include <winerror.h>
17
18namespace webrtc {
19
20// Callers must check the return value of ResolveCoreWinRTStringDelayLoad()
21// before using these functions.
22bool ResolveCoreWinRTStringDelayload();
23
24HRESULT CreateHstring(const wchar_t* src, uint32_t len, HSTRING* out_hstr);
25
26HRESULT DeleteHstring(HSTRING hstr);
27
28} // namespace webrtc
29
30#endif // RTC_BASE_WIN_HSTRING_H_