source: trunk/mediafolder/create_mfldr_def.CMD@ 2

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

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

File size: 3.9 KB
Line 
1/* */
2call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
3call SysLoadFuncs
4
5deffile=ARG(1)
6if ARG(1)="" then deffile="tst.def"
7
8theVersion=VALUE("MMCLSVERSION", ,"OS2ENVIRONMENT")
9if theVersion="" THEN theVersion=0.0.0
10
11def="; mediafolder.DEF: DEF-file for mediafld.dll"||'0d'x||'0a'x
12def=def||";"||'0d'x||'0a'x
13def=def||"; (C) Chris Wohlgemuth 2002-"||WORD(DATE(), 3) ||'0d'x||'0a'x
14def=def||";/*"||'0d'x||'0a'x
15def=def||"; * This program is free software; you can redistribute it and/or modify"||'0d'x||'0a'x
16def=def||"; * it under the terms of the GNU General Public License as published by"||'0d'x||'0a'x
17def=def||"; * the Free Software Foundation; either version 2, or (at your option)"||'0d'x||'0a'x
18def=def||"; * any later version."||'0d'x||'0a'x
19def=def||"; *"||'0d'x||'0a'x
20def=def||"; * This program is distributed in the hope that it will be useful,"||'0d'x||'0a'x
21def=def||"; * but WITHOUT ANY WARRANTY; without even the implied warranty of"||'0d'x||'0a'x
22def=def||"; * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"||'0d'x||'0a'x
23def=def||"; * GNU General Public License for more details."||'0d'x||'0a'x
24def=def||"; *"||'0d'x||'0a'x
25def=def||"; * You should have received a copy of the GNU General Public License"||'0d'x||'0a'x
26def=def||"; * along with this program; see the file COPYING. If not, write to"||'0d'x||'0a'x
27def=def||"; * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA."||'0d'x||'0a'x
28def=def||"; */"||'0d'x||'0a'x
29def=def||";/*"||'0d'x||'0a'x
30def=def||"; * If you need another license for your project/product contact me at"||'0d'x||'0a'x
31def=def||"; * "||'0d'x||'0a'x
32def=def||"; * http://www.os2world.com/cdwriting"||'0d'x||'0a'x
33def=def||"; * http://www.geocities.com/SiliconValley/Sector/5785/"||'0d'x||'0a'x
34def=def||"; */"||'0d'x||'0a'x
35
36def=def||'0d'x||'0a'x
37
38def=def||"LIBRARY MEDIAFLD INITGLOBAL"||'0d'x||'0a'x
39def=def||"DESCRIPTION '$@#(C) C. Wohlgemuth "
40def=def||WORD(DATE(),3)||":"||LEFT(theVersion,3)||" #@##1## "||DATE("E")||" "||TIME("N")||" My ;-) ::::"||WORD(TRANSLATE(theVersion," ", "."),3)||"::@@Media-Folder V"||theVersion||"'"||'0d'x||'0a'x
41def=def||"PROTMODE"||'0d'x||'0a'x
42def=def||"CODE LOADONCALL DISCARDABLE"||'0d'x||'0a'x
43def=def||"DATA SINGLE SHARED DISCARDABLE"||'0d'x||'0a'x
44def=def||"EXPORTS "||'0d'x||'0a'x
45def=def||" CWMediaFolderClassData"||'0d'x||'0a'x
46def=def||" CWMediaFolderCClassData"||'0d'x||'0a'x
47def=def||" CWMediaFolderNewClass"||'0d'x||'0a'x
48def=def||""||'0d'x||'0a'x
49def=def||" M_CWMediaFolderClassData"||'0d'x||'0a'x
50def=def||" M_CWMediaFolderCClassData"||'0d'x||'0a'x
51def=def||" M_CWMediaFolderNewClass"||'0d'x||'0a'x
52def=def||""||'0d'x||'0a'x
53def=def||" CWAudioShadowClassData"||'0d'x||'0a'x
54def=def||" CWAudioShadowCClassData"||'0d'x||'0a'x
55def=def||" CWAudioShadowNewClass"||'0d'x||'0a'x
56def=def||""||'0d'x||'0a'x
57def=def||" M_CWAudioShadowClassData"||'0d'x||'0a'x
58def=def||" M_CWAudioShadowCClassData"||'0d'x||'0a'x
59def=def||" M_CWAudioShadowNewClass"||'0d'x||'0a'x
60def=def||""||'0d'x||'0a'x
61def=def||" CWCDFolderClassData"||'0d'x||'0a'x
62def=def||" CWCDFolderCClassData"||'0d'x||'0a'x
63def=def||" CWCDFolderNewClass"||'0d'x||'0a'x
64def=def||""||'0d'x||'0a'x
65def=def||" M_CWCDFolderClassData"||'0d'x||'0a'x
66def=def||" M_CWCDFolderCClassData"||'0d'x||'0a'x
67def=def||" M_CWCDFolderNewClass"||'0d'x||'0a'x
68def=def||""||'0d'x||'0a'x
69def=def||" CWM3UFolderClassData"||'0d'x||'0a'x
70def=def||" CWM3UFolderCClassData"||'0d'x||'0a'x
71def=def||" CWM3UFolderNewClass"||'0d'x||'0a'x
72def=def||""||'0d'x||'0a'x
73def=def||" M_CWM3UFolderClassData"||'0d'x||'0a'x
74def=def||" M_CWM3UFolderCClassData"||'0d'x||'0a'x
75def=def||" M_CWM3UFolderNewClass"||'0d'x||'0a'x
76
77'@type NUL > 'deffile
78call lineout deffile,def
79call stream deffile, "C", "close"
80exit
81
Note: See TracBrowser for help on using the repository browser.