1 | /*
|
---|
2 | * (C) Chris Wohlgemuth 2002-2003
|
---|
3 | *
|
---|
4 | */
|
---|
5 | /*
|
---|
6 | * This program is free software; you can redistribute it and/or modify
|
---|
7 | * it under the terms of the GNU General Public License as published by
|
---|
8 | * the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | * any later version.
|
---|
10 | *
|
---|
11 | * This program is distributed in the hope that it will be useful,
|
---|
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | * GNU General Public License for more details.
|
---|
15 | *
|
---|
16 | * You should have received a copy of the GNU General Public License
|
---|
17 | * along with this program; see the file COPYING. If not, write to
|
---|
18 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
19 | */
|
---|
20 | /*
|
---|
21 | * If you need another license for your project/product (commercial,
|
---|
22 | * noncommercial, whatever) contact me at
|
---|
23 | *
|
---|
24 | * http://www.os2world.com/cdwriting
|
---|
25 | * http://www.geocities.com/SiliconValley/Sector/5785/
|
---|
26 | *
|
---|
27 | */
|
---|
28 |
|
---|
29 | /*
|
---|
30 | * CWdisk.idl:
|
---|
31 | *
|
---|
32 | *
|
---|
33 | */
|
---|
34 |
|
---|
35 | #include <wpdisk.idl>
|
---|
36 |
|
---|
37 | /*
|
---|
38 | CLASS: CWMMDisk
|
---|
39 |
|
---|
40 | CLASS HIERARCHY:
|
---|
41 |
|
---|
42 | SOMObject
|
---|
43 | ÀÄÄ WPObject
|
---|
44 | ÀÄÄ WPAbstract
|
---|
45 | ÀÄÄ WPDisk
|
---|
46 | ÀÄÄ CWMMDisk
|
---|
47 | */
|
---|
48 |
|
---|
49 | interface M_CWMMDisk;
|
---|
50 |
|
---|
51 | interface CWMMDisk : WPDisk
|
---|
52 | {
|
---|
53 |
|
---|
54 | /*
|
---|
55 | * New instance methods for CWDisk:
|
---|
56 | *
|
---|
57 | */
|
---|
58 |
|
---|
59 | #ifdef __SOMIDL__
|
---|
60 | implementation {
|
---|
61 |
|
---|
62 | /*
|
---|
63 | * Class Modifiers:
|
---|
64 | */
|
---|
65 |
|
---|
66 | externalprefix = cwmmdisk_;
|
---|
67 | externalstem = cwmmdisk;
|
---|
68 | majorversion = 1;
|
---|
69 | minorversion = 2;
|
---|
70 | filestem = cwmmdisk; //# specifies the filestem for sc-generated files
|
---|
71 | metaclass = M_CWMMDisk;
|
---|
72 | dllname = "CWMM.dll";
|
---|
73 | callstyle = oidl;
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * Internal instance variables for CWDisk:
|
---|
77 | *
|
---|
78 | */
|
---|
79 |
|
---|
80 | /*
|
---|
81 | * WPDisk methods overridden by CWDisk:
|
---|
82 | *
|
---|
83 | */
|
---|
84 |
|
---|
85 | wpViewObject :override;
|
---|
86 | /* wpInitData : override;
|
---|
87 | wpDelete : override;*/
|
---|
88 | wpFree : override;
|
---|
89 | wpObjectReady : override;
|
---|
90 | #ifdef __PRIVATE__
|
---|
91 |
|
---|
92 | #endif
|
---|
93 |
|
---|
94 | }; // implementation
|
---|
95 | #endif /* __SOMIDL__ */
|
---|
96 | };
|
---|
97 |
|
---|
98 |
|
---|
99 | interface M_CWMMDisk : M_WPDisk
|
---|
100 | {
|
---|
101 |
|
---|
102 | /*
|
---|
103 | * New class methods for M_CWDisk:
|
---|
104 | *
|
---|
105 | */
|
---|
106 |
|
---|
107 |
|
---|
108 | #ifdef __SOMIDL__
|
---|
109 | implementation {
|
---|
110 |
|
---|
111 |
|
---|
112 | /*
|
---|
113 | * Class Modifiers:
|
---|
114 | *
|
---|
115 | */
|
---|
116 |
|
---|
117 | externalprefix = cwmmdiskM_;
|
---|
118 | externalstem = cwmmdiskM;
|
---|
119 | functionprefix = cwmmdiskM_;
|
---|
120 | majorversion = 1;
|
---|
121 | minorversion = 2;
|
---|
122 | filestem = cwmmdisk; //# specifies the filestem for sc-generated files
|
---|
123 | dllname = "CWMM.dll";
|
---|
124 | callstyle = oidl;
|
---|
125 |
|
---|
126 | /*
|
---|
127 | * Internal class variables
|
---|
128 | *
|
---|
129 | */
|
---|
130 |
|
---|
131 | /*
|
---|
132 | * M_WPDisk methods overridden by M_CWDisk:
|
---|
133 | *
|
---|
134 | */
|
---|
135 |
|
---|
136 | wpclsQueryTitle: override;
|
---|
137 |
|
---|
138 | };
|
---|
139 |
|
---|
140 | #endif /* __SOMIDL__ */
|
---|
141 |
|
---|
142 | };
|
---|
143 |
|
---|
144 |
|
---|