diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/guidutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/guidutil.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/guidutil.h b/src/libs/dutil/WixToolset.DUtil/inc/guidutil.h new file mode 100644 index 00000000..478a464f --- /dev/null +++ b/src/libs/dutil/WixToolset.DUtil/inc/guidutil.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #pragma once | ||
2 | // 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. | ||
3 | |||
4 | |||
5 | #ifdef __cplusplus | ||
6 | extern "C" { | ||
7 | #endif | ||
8 | |||
9 | #define GUID_STRING_LENGTH 39 | ||
10 | |||
11 | HRESULT DAPI GuidFixedCreate( | ||
12 | _Out_z_cap_c_(GUID_STRING_LENGTH) WCHAR* wzGuid | ||
13 | ); | ||
14 | |||
15 | HRESULT DAPI GuidCreate( | ||
16 | __deref_out_z LPWSTR* psczGuid | ||
17 | ); | ||
18 | |||
19 | #ifdef __cplusplus | ||
20 | } | ||
21 | #endif | ||