diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/metautil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/metautil.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/metautil.h b/src/libs/dutil/WixToolset.DUtil/inc/metautil.h new file mode 100644 index 00000000..31f9ff5c --- /dev/null +++ b/src/libs/dutil/WixToolset.DUtil/inc/metautil.h | |||
@@ -0,0 +1,52 @@ | |||
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 | #include <iadmw.h> | ||
6 | #include <iiscnfg.h> | ||
7 | #include <iwamreg.h> | ||
8 | #include <mddefw.h> | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" { | ||
12 | #endif | ||
13 | |||
14 | // structs | ||
15 | |||
16 | // prototypes | ||
17 | HRESULT DAPI MetaFindWebBase( | ||
18 | __in IMSAdminBaseW* piMetabase, | ||
19 | __in_z LPCWSTR wzIP, | ||
20 | __in int iPort, | ||
21 | __in_z LPCWSTR wzHeader, | ||
22 | __in BOOL fSecure, | ||
23 | __out_ecount(cchWebBase) LPWSTR wzWebBase, | ||
24 | __in DWORD cchWebBase | ||
25 | ); | ||
26 | HRESULT DAPI MetaFindFreeWebBase( | ||
27 | __in IMSAdminBaseW* piMetabase, | ||
28 | __out_ecount(cchWebBase) LPWSTR wzWebBase, | ||
29 | __in DWORD cchWebBase | ||
30 | ); | ||
31 | |||
32 | HRESULT DAPI MetaOpenKey( | ||
33 | __in IMSAdminBaseW* piMetabase, | ||
34 | __in METADATA_HANDLE mhKey, | ||
35 | __in_z LPCWSTR wzKey, | ||
36 | __in DWORD dwAccess, | ||
37 | __in DWORD cRetries, | ||
38 | __out METADATA_HANDLE* pmh | ||
39 | ); | ||
40 | HRESULT DAPI MetaGetValue( | ||
41 | __in IMSAdminBaseW* piMetabase, | ||
42 | __in METADATA_HANDLE mhKey, | ||
43 | __in_z LPCWSTR wzKey, | ||
44 | __inout METADATA_RECORD* pmr | ||
45 | ); | ||
46 | void DAPI MetaFreeValue( | ||
47 | __in METADATA_RECORD* pmr | ||
48 | ); | ||
49 | |||
50 | #ifdef __cplusplus | ||
51 | } | ||
52 | #endif | ||