source: trunk/classes/idl/idl_audio/cwm3u.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.9 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 * cwaudiostream.idl:
31 */
32
33#include <cwaudio.idl>
34#include <wprootf.idl>
35
36/*
37 CLASS:
38*/
39
40interface M_MMM3U;
41
42interface MMM3U : CWMMDataFile
43{
44
45 /*
46 * New instance methods
47 *
48 */
49
50#ifdef __SOMIDL__
51 implementation {
52 releaseorder:
53 cwmmAddURLPage;
54 /*
55 * Class Modifiers:
56 *
57 */
58
59 externalprefix = cwm3u_;
60 externalstem = cwm3u;
61 majorversion = 1;
62 minorversion = 2;
63 filestem = cwm3u; //# specifies the filestem for sc-generated files
64 metaclass = M_MMM3U;
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 wpModifyPopupMenu : override;
80 wpMenuItemSelected : override;
81 wpOpen : override;
82 wpCopiedFromTemplate : override;
83
84#ifdef __PRIVATE__
85
86#endif
87
88 }; // implementation
89#endif /* __SOMIDL__ */
90};
91
92
93interface M_MMM3U : M_CWMMDataFile
94{
95
96 /*
97 * New class methods
98 *
99 */
100
101
102#ifdef __SOMIDL__
103 implementation {
104
105
106 /*
107 * Class Modifiers:
108 *
109 */
110
111 externalprefix = cwm3uM_;
112 externalstem = cwm3uM;
113 functionprefix = cwm3uM_;
114 majorversion = 1;
115 minorversion = 2;
116 filestem = cwm3u; //# specifies the filestem for sc-generated files
117 dllname = "CWMM.dll";
118 callstyle = oidl;
119
120 /*
121 * Internal class variables
122 *
123 */
124
125 /*
126 * methods overridden
127 *
128 */
129 wpclsQueryInstanceType : override;
130 wpclsQueryInstanceFilter : override;
131 wpclsQueryDefaultHelp : override;
132 wpclsQueryTitle : override;
133 wpclsQueryIconData : override;
134 wpclsQueryDefaultView : override;
135 wpclsCreateDefaultTemplates : override;
136 };
137
138#endif /* __SOMIDL__ */
139
140};
141
142
143
144
Note: See TracBrowser for help on using the repository browser.