-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmysniffer.odl
70 lines (53 loc) · 1.73 KB
/
mysniffer.odl
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
// mysniffer.odl : type library source for mysniffer.exe
// This file will be processed by the MIDL compiler to produce the
// type library (mysniffer.tlb).
[ uuid(A2346940-8DA3-4CD8-B78D-C3ACCA65C98D), version(1.0) ]
library Mysniffer
{
importlib("stdole32.tlb");
importlib("stdole2.tlb");
// Primary dispatch interface for CMysnifferDoc
[ uuid(2E84B7D2-5F3D-49D2-82AA-81A4B49B1661) ]
dispinterface IMysniffer
{
properties:
// NOTE - ClassWizard will maintain property information here.
// Use extreme caution when editing this section.
//{{AFX_ODL_PROP(CMysnifferDoc)
//}}AFX_ODL_PROP
methods:
// NOTE - ClassWizard will maintain method information here.
// Use extreme caution when editing this section.
//{{AFX_ODL_METHOD(CMysnifferDoc)
//}}AFX_ODL_METHOD
};
// Class information for CMysnifferDoc
[ uuid(D7C9A84C-A0EB-4F07-8AFB-D9A1FB6C5CFA) ]
coclass Document
{
[default] dispinterface IMysniffer;
};
// Primary dispatch interface for CMyToolDialog
[ uuid(999D29F8-25E1-425A-814D-C4D7C6ED71AC) ]
dispinterface IMyToolDialog
{
properties:
// NOTE - ClassWizard will maintain property information here.
// Use extreme caution when editing this section.
//{{AFX_ODL_PROP(CMyToolDialog)
//}}AFX_ODL_PROP
methods:
// NOTE - ClassWizard will maintain method information here.
// Use extreme caution when editing this section.
//{{AFX_ODL_METHOD(CMyToolDialog)
//}}AFX_ODL_METHOD
};
// Class information for CMyToolDialog
[ uuid(D83B7A16-037E-4E7A-A01E-D88681A0393E) ]
coclass MyToolDialog
{
[default] dispinterface IMyToolDialog;
};
//{{AFX_APPEND_ODL}}
//}}AFX_APPEND_ODL}}
};