blob: 1f49d8993c31439807df2f2ea534b2e62944d5dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#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.
#include "scauser.h"
// Identity
#define APATTR_NETSERVICE 0x0001 // Network Service
#define APATTR_LOCSERVICE 0x0002 // Local Service
#define APATTR_LOCSYSTEM 0x0004 // Local System
#define APATTR_OTHERUSER 0x0008 // Other User
#define APATTR_APPPOOLIDENTITY 0x0010 // ApplicationPoolIdentity
// prototypes
HRESULT ScaFindAppPool7(
__in LPCWSTR wzAppPool,
__out_ecount(cchName) LPWSTR wzName,
__in DWORD cchName,
__in SCA_APPPOOL *psapList
);
HRESULT ScaAppPoolInstall7(
__in SCA_APPPOOL* psapList
);
HRESULT ScaAppPoolUninstall7(
__in SCA_APPPOOL* psapList
);
HRESULT ScaWriteAppPool7(
__in const SCA_APPPOOL* psap
);
HRESULT ScaRemoveAppPool7(
__in const SCA_APPPOOL* psap
);
|