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
|
// Checklist.idl : IDL source for Checklist.dll
//
// This file will be processed by the MIDL tool to
// produce the type library (Checklist.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
[
uuid(409C4B00-9310-11d3-BFC1-0020182B97FC),
helpstring("Info Types"),
]
typedef [v1_enum] enum NightSecSiteInfo
{
[ helpstring("Advanced Wizard (Bool)") ] nsAdvanced
} NightSecSiteInfo;
[
object,
uuid(409C4B01-9310-11d3-BFC1-0020182B97FC),
dual,
helpstring("Interface for retrieving misc information from a Night Security Container"),
pointer_default(unique)
]
interface INightSecSiteInfo : IDispatch
{
[propget, id(1), helpstring("Get's a containers properties and options")]
HRESULT Info([in] NightSecSiteInfo nsItem, [out, retval] VARIANT* pvVal);
};
[
object,
uuid(409C4B03-9310-11d3-BFC1-0020182B97FC),
helpstring("Interface for retrieving misc information from a Night Security Container"),
pointer_default(unique)
]
interface INightSecErrorLog : IUnknown
{
[id(1)] HRESULT AddError([in] IUnknown* pUnk);
[id(2)] HRESULT HasErrors([out, retval] BOOL* pbRet);
};
|