source: trunk/classes/idl/idl_image/cwpcx.idl

Last change on this file was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

File size: 2.5 KB
Line 
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 * CWgif.idl:
31 */
32
33#include <cwimage.idl>
34
35/*
36 CLASS:
37*/
38
39interface M_MMPCX;
40
41interface MMPCX : MMImage
42{
43
44 /*
45 * New instance methods
46 *
47 */
48
49
50#ifdef __SOMIDL__
51 implementation {
52
53 /*
54 * Class Modifiers:
55 *
56 */
57
58 externalprefix = cwpcx_;
59 externalstem = cwpcx;
60 majorversion = 1;
61 minorversion = 2;
62 filestem = cwpcx; //# specifies the filestem for sc-generated files
63 metaclass = M_MMPCX;
64 dllname = "cwmm.dll";
65 callstyle = oidl;
66
67
68 /*
69 * Internal instance variables
70 *
71 */
72
73
74 /*
75 * methods overridden
76 *
77 */
78
79#ifdef __PRIVATE__
80
81#endif
82
83 }; // implementation
84#endif /* __SOMIDL__ */
85};
86
87
88interface M_MMPCX : M_MMImage
89{
90
91 /*
92 * New class methods
93 *
94 */
95
96
97#ifdef __SOMIDL__
98 implementation {
99
100
101 /*
102 * Class Modifiers:
103 *
104 */
105
106 externalprefix = cwpcxM_;
107 externalstem = cwpcxM;
108 functionprefix = cwpcxM_;
109 majorversion = 1;
110 minorversion = 2;
111 filestem = cwpcx; //# specifies the filestem for sc-generated files
112 dllname = "cwmm.dll";
113 callstyle = oidl;
114
115 /*
116 * Internal class variables
117 *
118 */
119
120 /*
121 * methods overridden
122 *
123 */
124 wpclsQueryInstanceType : override;
125 wpclsQueryInstanceFilter : override;
126 wpclsQueryDefaultHelp : override;
127 wpclsQueryTitle : override;
128 wpclsQueryIconData : override;
129 };
130
131#endif /* __SOMIDL__ */
132
133};
134
135
136
137
Note: See TracBrowser for help on using the repository browser.