diff options
Diffstat (limited to 'src/ext/Iis/ca/scaiis.h')
-rw-r--r-- | src/ext/Iis/ca/scaiis.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/ext/Iis/ca/scaiis.h b/src/ext/Iis/ca/scaiis.h new file mode 100644 index 00000000..4c743edf --- /dev/null +++ b/src/ext/Iis/ca/scaiis.h | |||
@@ -0,0 +1,33 @@ | |||
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 | HRESULT ScaMetabaseTransaction(__in_z LPCWSTR wzBackup); | ||
6 | |||
7 | HRESULT ScaCreateWeb(IMSAdminBase* piMetabase, LPCWSTR wzWeb, LPCWSTR wzWebBase); | ||
8 | |||
9 | HRESULT ScaDeleteApp(IMSAdminBase* piMetabase, LPCWSTR wzWebRoot); | ||
10 | |||
11 | HRESULT ScaCreateApp(IMSAdminBase* piMetabase, LPCWSTR wzWebRoot, | ||
12 | DWORD dwIsolation); | ||
13 | |||
14 | HRESULT ScaCreateMetabaseKey(IMSAdminBase* piMetabase, LPCWSTR wzRootKey, | ||
15 | LPCWSTR wzSubKey); | ||
16 | |||
17 | HRESULT ScaDeleteMetabaseKey(IMSAdminBase* piMetabase, LPCWSTR wzRootKey, | ||
18 | LPCWSTR wzSubKey); | ||
19 | |||
20 | HRESULT ScaWriteMetabaseValue(IMSAdminBase* piMetabase, LPCWSTR wzRootKey, | ||
21 | LPCWSTR wzSubKey, DWORD dwIdentifier, | ||
22 | DWORD dwAttributes, DWORD dwUserType, | ||
23 | DWORD dwDataType, LPVOID pvData); | ||
24 | |||
25 | HRESULT ScaDeleteMetabaseValue(IMSAdminBase* piMetabase, LPCWSTR wzRootKey, | ||
26 | LPCWSTR wzSubKey, DWORD dwIdentifier, | ||
27 | DWORD dwDataType); | ||
28 | |||
29 | HRESULT ScaWriteConfigurationScript(LPCWSTR pwzCaScriptKey); | ||
30 | |||
31 | HRESULT ScaAddToIisConfiguration(LPCWSTR pwzData, DWORD dwCost); | ||
32 | |||
33 | HRESULT ScaLoadMetabase(IMSAdminBase** piMetabase); | ||