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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#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 "scawebapp.h"
#include "scawebprop.h"
#include "scahttpheader.h"
#include "scaweberr.h"
#include "scassl.h"
#include "scaapppool.h"
#include "scaweblog.h"
// globals
#define MAX_ADDRESSES_PER_WEB 10
// structs
struct SCA_WEB7
{
// darwin information
WCHAR wzKey[MAX_DARWIN_KEY + 1];
WCHAR wzComponent[MAX_DARWIN_KEY + 1];
BOOL fHasComponent;
INSTALLSTATE isInstalled;
INSTALLSTATE isAction;
int iSiteId;
// metabase information
WCHAR wzWebBase[METADATA_MAX_NAME_LEN + 1];
BOOL fBaseExists;
// iis configuation information
SCA_WEB_ADDRESS swaBinding;
SCA_WEB_ADDRESS swaExtraAddresses[MAX_ADDRESSES_PER_WEB + 1];
DWORD cExtraAddresses;
WCHAR wzDirectory[MAX_PATH];
WCHAR wzDescription[MAX_DARWIN_COLUMN + 1];
int iState;
int iAttributes;
BOOL fHasProperties;
SCA_WEB_PROPERTIES swp;
BOOL fHasApplication;
SCA_WEB_APPLICATION swapp;
BOOL fHasSecurity;
int dwAccessPermissions;
int iConnectionTimeout;
SCA_WEB_SSL_CERTIFICATE* pswscList;
SCA_HTTP_HEADER* pshhList;
SCA_WEB_ERROR* psweList;
BOOL fHasLog;
SCA_WEB_LOG swl;
SCA_WEB7* pswNext;
};
// prototypes
HRESULT ScaWebsRead7(
__in SCA_WEB7** ppswList,
__in SCA_HTTP_HEADER** ppshhList,
__in SCA_WEB_ERROR** ppsweList,
__in WCA_WRAPQUERY_HANDLE hUserQuery,
__in WCA_WRAPQUERY_HANDLE hWebDirPropQuery,
__in WCA_WRAPQUERY_HANDLE hSslCertQuery,
__in WCA_WRAPQUERY_HANDLE hWebLogQuery,
__in WCA_WRAPQUERY_HANDLE hWebAppQuery,
__in WCA_WRAPQUERY_HANDLE hWebAppExtQuery,
__inout LPWSTR *ppwzCustomActionData
);
HRESULT ScaWebsGetBase7(
__in SCA_WEB7* pswList,
__in LPCWSTR pswWebKey,
__out_ecount(cchDest) LPWSTR pswWeb,
__in DWORD_PTR cchDest
);
HRESULT ScaWebsInstall7(
__in SCA_WEB7* pswList,
__in SCA_APPPOOL * psapList
);
HRESULT ScaWebsUninstall7(
__in SCA_WEB7* pswList
);
void ScaWebsFreeList7(
__in SCA_WEB7* pswHead
);
|