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/scaproperty7.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/scaproperty7.h')
-rw-r--r-- | src/ca/scaproperty7.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ca/scaproperty7.h b/src/ca/scaproperty7.h new file mode 100644 index 00000000..bbf811e8 --- /dev/null +++ b/src/ca/scaproperty7.h | |||
@@ -0,0 +1,26 @@ | |||
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 | #define wzIISPROPERTY_IIS5_ISOLATION_MODE L"IIs5IsolationMode" | ||
6 | #define wzIISPROPERTY_MAX_GLOBAL_BANDWIDTH L"MaxGlobalBandwidth" | ||
7 | #define wzIISPROPERTY_LOG_IN_UTF8 L"LogInUTF8" | ||
8 | #define wzIISPROPERTY_ETAG_CHANGENUMBER L"ETagChangeNumber" | ||
9 | |||
10 | // prototypes | ||
11 | HRESULT ScaPropertyInstall7( | ||
12 | SCA_PROPERTY* pspList | ||
13 | ); | ||
14 | |||
15 | HRESULT ScaPropertyUninstall7( | ||
16 | SCA_PROPERTY* pspList | ||
17 | ); | ||
18 | |||
19 | HRESULT ScaWriteProperty7( | ||
20 | const SCA_PROPERTY* psp | ||
21 | ); | ||
22 | |||
23 | HRESULT ScaRemoveProperty7( | ||
24 | SCA_PROPERTY* psp | ||
25 | ); | ||
26 | |||