blob: a4c407a4701f0a94ed9b0eefb1ca94832f3421d3 (
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
37
38
39
40
|
#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.
enum eHttpHeaderParentType { hhptVDir = 1, hhptWeb };
struct SCA_HTTP_HEADER
{
int iParentType;
WCHAR wzParentValue[MAX_DARWIN_KEY + 1];
WCHAR wzName[MAX_PATH];
WCHAR wzValue[MAX_PATH];
int iAttributes;
SCA_HTTP_HEADER* pshhNext;
};
// prototypes
HRESULT ScaHttpHeaderRead(
__in SCA_HTTP_HEADER **ppshhList,
__inout LPWSTR *ppwzCustomActionData
);
void ScaHttpHeaderFreeList(
__in SCA_HTTP_HEADER *pshhList
);
HRESULT ScaHttpHeaderCheckList(
__in SCA_HTTP_HEADER* pshhList
);
HRESULT ScaGetHttpHeader(
__in int iParentType,
__in LPCWSTR wzParentValue,
__in SCA_HTTP_HEADER** ppshhList,
__out SCA_HTTP_HEADER** ppshhOut
);
HRESULT ScaWriteHttpHeader(
__in IMSAdminBase* piMetabase,
LPCWSTR wzRoot,
SCA_HTTP_HEADER* pshhList
);
|