xref: /aosp_15_r20/external/webrtc/rtc_base/win/hstring.h (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1 /*
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 
18 namespace webrtc {
19 
20 // Callers must check the return value of ResolveCoreWinRTStringDelayLoad()
21 // before using these functions.
22 bool ResolveCoreWinRTStringDelayload();
23 
24 HRESULT CreateHstring(const wchar_t* src, uint32_t len, HSTRING* out_hstr);
25 
26 HRESULT DeleteHstring(HSTRING hstr);
27 
28 }  // namespace webrtc
29 
30 #endif  // RTC_BASE_WIN_HSTRING_H_
31