blob: 478a464f81438ea2e87a250e75c63e6e5ff84b7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#ifdef __cplusplus
extern "C" {
#endif
#define GUID_STRING_LENGTH 39
HRESULT DAPI GuidFixedCreate(
_Out_z_cap_c_(GUID_STRING_LENGTH) WCHAR* wzGuid
);
HRESULT DAPI GuidCreate(
__deref_out_z LPWSTR* psczGuid
);
#ifdef __cplusplus
}
#endif
|