-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClassicExplorer.idl
73 lines (63 loc) · 1.42 KB
/
ClassicExplorer.idl
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
72
73
// ClassicExplorer.idl : IDL source for ClassicExplorer
//
// This file will be processed by the MIDL tool to
// produce the type library (addressbar.tlb) and marshalling code.
// !!! Additions to the type library must be reflected in RegistryScript.rgs !!!
import "oaidl.idl";
import "ocidl.idl";
[
object,
uuid(31371D7C-E550-4870-A3D2-6C3A1A553168),
dual,
nonextensible,
helpstring("IAddressBarHostBand Interface"),
pointer_default(unique)
]
interface IAddressBarHostBand : IDispatch {};
[
object,
uuid(3E0BC6FD-A487-4438-B669-859D38F594A2),
dual,
nonextensible,
helpstring("IThrobberBand Interface"),
pointer_default(unique)
]
interface IThrobberBand : IDispatch {};
[
object,
uuid(1D09EB49-083A-4679-A1D5-2F15CAD4D88F),
dual,
nonextensible,
helpstring("IBrowserHelperObject Interface"),
pointer_default(unique)
]
interface IBrowserHelperObject : IDispatch {};
[
uuid(205F9779-62D5-4E06-8DAD-8E150FFA38DB),
version(1.0),
]
library AddressBarLib
{
importlib("stdole2.tlb");
[
uuid(FC5A7312-CFFE-4BF1-83E8-22D44C040568)
]
coclass AddressBarHostBand
{
[default] interface IAddressBarHostBand;
};
[
uuid(9F7E1105-EB11-4A41-857A-F7E1494D3818)
]
coclass ThrobberBand
{
[default] interface IThrobberBand;
};
[
uuid(844CFA4E-7D74-4C80-B134-D214C9699F98)
]
coclass BrowserHelperObject
{
[default] interface IBrowserHelperObject;
};
};