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