blob: 71adfd00d2b64d40e40eb7b23b55f543c42a2c5c (
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
|
#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.
struct SCA_WEB_APPLICATION_EXTENSION
{
WCHAR wzExtension[MAX_DARWIN_COLUMN + 1];
WCHAR wzVerbs[MAX_DARWIN_COLUMN + 1];
WCHAR wzExecutable[MAX_DARWIN_COLUMN + 1];
int iAttributes;
SCA_WEB_APPLICATION_EXTENSION* pswappextNext;
};
// prototypes
HRESULT ScaWebAppExtensionsRead(
__in LPCWSTR wzApplication,
__in WCA_WRAPQUERY_HANDLE hWebAppExtQuery,
__inout SCA_WEB_APPLICATION_EXTENSION** ppswappextList
);
HRESULT ScaWebAppExtensionsWrite(
__in IMSAdminBase* piMetabase,
__in LPCWSTR wzRootOfWeb,
__in SCA_WEB_APPLICATION_EXTENSION* pswappextList
);
void ScaWebAppExtensionsFreeList(
__in SCA_WEB_APPLICATION_EXTENSION* pswappextList
);
|