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
|
//
// Copyright (C) Microsoft Corporation 2005
// IHV UI Extension sample
//
import "unknwn.idl";
import "wtypes.idl";
import "ihvuiinc.idl"; // For wireless UI extensions
interface IWizardExtension;
interface IObjectWithSite;
interface IDot11SampleExtUI;
interface IDot11SampleExtUIConProperty;
interface IDot11SampleExtUISecProperty;
[
uuid(7ca89d4b-2c5b-4368-b53a-ffa14e031179),
helpstring(" Dot11 IHV Extensibility UI Interface"),
dual
]
interface IDot11SampleExtUI: IDot11ExtUI
{
}
[
uuid(61055513-2f27-4962-b29c-d6d7d1500fec),
helpstring(" Dot11 IHV Extensibility UI Connection Properties Interface"),
dual
]
interface IDot11SampleExtUIConProperty: IDot11ExtUIProperty
{
[id(1), hidden, helpstring("method Initialize")]
HRESULT
Initialize([in] BSTR bstrPropertyName);
}
[
uuid(12c211ae-1b6d-471c-9c1b-698bcc9b9d97),
helpstring(" Dot11 IHV Extensibility UI Security Properties Interface"),
dual
]
interface IDot11SampleExtUISecProperty: IDot11ExtUIProperty
{
[id(1), hidden, helpstring("method Initialize")]
HRESULT
Initialize([in] BSTR bstrPropertyName, [in] DWORD dwIhvSecurity);
}
[
uuid(a18bae3c-39c2-4b34-ba49-0130e431d2ca),
helpstring(" Dot11 IHV Extensibility UI Key Properties Interface"),
dual
]
interface IDot11SampleExtUIKeyProperty: IDot11ExtUIProperty
{
[id(1), hidden, helpstring("method Initialize")]
HRESULT
Initialize([in] BYTE* pvData);
}
|