forked from Thomas-Mielke-Software/ECTImport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECTImportX.idl
53 lines (41 loc) · 1.29 KB
/
ECTImportX.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
// ECTImportX.idl : type library source for ActiveX Control project.
// This file will be processed by the MIDL compiler tool to
// produce the type library (ECTImportX.tlb) that will become a resource in
// ECTImportX.ocx.
#include <olectl.h>
#include <idispids.h>
[ uuid(3BB16BA6-DAC5-40ED-B3B9-8A2F3644E326), version(1.0),
helpfile("ECTImportX.hlp"),
helpstring("ECTImportX ActiveX Control module"),
control ]
library ECTImportXLib
{
importlib(STDOLE_TLB);
// Primary dispatch interface for CECTImportXCtrl
[ uuid(C0940CD6-FE5D-4F94-A8D9-8BC0B30198BC),
helpstring("Dispatch interface for ECTImportX Control")]
dispinterface _DECTImportX
{
properties:
methods:
[id(DISPID_ABOUTBOX)] void AboutBox();
[id(1), helpstring("method Init")] void Init(LONG dokID);
};
// Event dispatch interface for CECTImportXCtrl
[ uuid(1380B78A-5545-4E30-8955-A7FD6057AB4B),
helpstring("Event interface for ECTImportX Control") ]
dispinterface _DECTImportXEvents
{
properties:
// Event interface has no properties
methods:
};
// Class information for CECTImportXCtrl
[ uuid(163097F8-09D6-4437-B1DC-16DCAB67BC4D),
helpstring("ECTImportX Control"), control ]
coclass ECTImportX
{
[default] dispinterface _DECTImportX;
[default, source] dispinterface _DECTImportXEvents;
};
};