diff options
Diffstat (limited to 'src/ext/Iis/ca/scaapppool7.h')
-rw-r--r-- | src/ext/Iis/ca/scaapppool7.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ext/Iis/ca/scaapppool7.h b/src/ext/Iis/ca/scaapppool7.h new file mode 100644 index 00000000..1f49d899 --- /dev/null +++ b/src/ext/Iis/ca/scaapppool7.h | |||
@@ -0,0 +1,36 @@ | |||
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 "scauser.h" | ||
6 | |||
7 | // Identity | ||
8 | #define APATTR_NETSERVICE 0x0001 // Network Service | ||
9 | #define APATTR_LOCSERVICE 0x0002 // Local Service | ||
10 | #define APATTR_LOCSYSTEM 0x0004 // Local System | ||
11 | #define APATTR_OTHERUSER 0x0008 // Other User | ||
12 | #define APATTR_APPPOOLIDENTITY 0x0010 // ApplicationPoolIdentity | ||
13 | |||
14 | // prototypes | ||
15 | HRESULT ScaFindAppPool7( | ||
16 | __in LPCWSTR wzAppPool, | ||
17 | __out_ecount(cchName) LPWSTR wzName, | ||
18 | __in DWORD cchName, | ||
19 | __in SCA_APPPOOL *psapList | ||
20 | ); | ||
21 | |||
22 | HRESULT ScaAppPoolInstall7( | ||
23 | __in SCA_APPPOOL* psapList | ||
24 | ); | ||
25 | |||
26 | HRESULT ScaAppPoolUninstall7( | ||
27 | __in SCA_APPPOOL* psapList | ||
28 | ); | ||
29 | |||
30 | HRESULT ScaWriteAppPool7( | ||
31 | __in const SCA_APPPOOL* psap | ||
32 | ); | ||
33 | |||
34 | HRESULT ScaRemoveAppPool7( | ||
35 | __in const SCA_APPPOOL* psap | ||
36 | ); | ||