diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-16 21:19:24 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2018-12-16 21:20:40 -0600 |
commit | 95a5a8f9efef02ddcec5b3f69be99a00d71a802a (patch) | |
tree | f0a92b8e8e37e17af6053db11f1b8a7a532cd12c /src/ca/scaweblog.h | |
parent | aec6e9a4b21accd2e8aeb2cb36ad1cdc8f308f79 (diff) | |
download | wix-95a5a8f9efef02ddcec5b3f69be99a00d71a802a.tar.gz wix-95a5a8f9efef02ddcec5b3f69be99a00d71a802a.tar.bz2 wix-95a5a8f9efef02ddcec5b3f69be99a00d71a802a.zip |
Import implementation of IisCA from old repo's scasched/scaexec.
Diffstat (limited to 'src/ca/scaweblog.h')
-rw-r--r-- | src/ca/scaweblog.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ca/scaweblog.h b/src/ca/scaweblog.h new file mode 100644 index 00000000..1a690cce --- /dev/null +++ b/src/ca/scaweblog.h | |||
@@ -0,0 +1,27 @@ | |||
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 | struct SCA_WEB_LOG | ||
6 | { | ||
7 | // iis configuation information | ||
8 | WCHAR wzLog[MAX_DARWIN_KEY + 1]; | ||
9 | |||
10 | // for specifying the log format | ||
11 | WCHAR wzFormat[MAX_DARWIN_KEY + 1]; | ||
12 | WCHAR wzFormatGUID[MAX_DARWIN_KEY + 1]; | ||
13 | }; | ||
14 | |||
15 | |||
16 | // prototypes | ||
17 | HRESULT ScaGetWebLog( | ||
18 | IMSAdminBase* piMetabase, | ||
19 | LPCWSTR wzLog, | ||
20 | __in WCA_WRAPQUERY_HANDLE hWebLogQuery, | ||
21 | SCA_WEB_LOG* pswl | ||
22 | ); | ||
23 | HRESULT ScaWriteWebLog( | ||
24 | IMSAdminBase* piMetabase, | ||
25 | LPCWSTR wzRootOfWeb, | ||
26 | SCA_WEB_LOG *pswl | ||
27 | ); | ||