blob: f398deca13484bbd5def24eed562fd1e3931f6ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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.
HRESULT ScaScheduleIIS7Configuration();
HRESULT ScaIIS7ConfigTransaction(__in_z LPCWSTR wzBackup);
HRESULT ScaCreateApp7(__in_z LPCWSTR wzWebRoot, DWORD dwIsolation);
HRESULT ScaDeleteConfigElement(IIS_CONFIG_ACTION emElement, LPCWSTR wzSubKey);
HRESULT ScaWriteConfigString(__in_z const LPCWSTR wzValue);
HRESULT ScaWriteConfigID(IIS_CONFIG_ACTION emID);
HRESULT ScaWriteConfigInteger(DWORD dwValue);
|