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:
1.0 KB
|
Line | |
---|
1 | /* rexx - Uninstall the CW-Audio classes */
|
---|
2 |
|
---|
3 | call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
|
---|
4 | call SysLoadFuncs
|
---|
5 |
|
---|
6 | call SysCls
|
---|
7 | SAY ''
|
---|
8 | SAY 'This skript will remove the CWAudio classes.'
|
---|
9 | SAY 'Do you want to continue?'
|
---|
10 | SAY ''
|
---|
11 | SAY 'Enter Y for yes and N for no.'
|
---|
12 | SAY ''
|
---|
13 | SAY '> '
|
---|
14 | parse value SysCurPos() with aktzeile aktspalte
|
---|
15 | newposition=SysCurPos(aktzeile-1,2)
|
---|
16 |
|
---|
17 | resp=LINEIN()
|
---|
18 | IF TRANSLATE(resp)='N' THEN EXIT
|
---|
19 |
|
---|
20 |
|
---|
21 | rc=SysDeRegisterObjectClass('CWMP3')
|
---|
22 | IF rc=0 THEN DO
|
---|
23 | SAY 'Error while deregistering the MP3-class.'
|
---|
24 | END
|
---|
25 | ELSE
|
---|
26 | SAY 'MP3-class deregistered.'
|
---|
27 |
|
---|
28 | rc=SysDeRegisterObjectClass('CWOGG')
|
---|
29 | IF rc=0 THEN DO
|
---|
30 | SAY 'Error while deregistering the Ogg-class.'
|
---|
31 | END
|
---|
32 | ELSE
|
---|
33 | SAY 'Ogg-class deregistered.'
|
---|
34 |
|
---|
35 | rc=SysDeRegisterObjectClass('CWCDTrack')
|
---|
36 | IF rc=0 THEN DO
|
---|
37 | SAY 'Error while deregistering the CDTrack-class.'
|
---|
38 | END
|
---|
39 | ELSE
|
---|
40 | SAY 'CDTrack-class deregistered.'
|
---|
41 |
|
---|
42 | 'repclass MMAudio CWAudio u'
|
---|
43 | rc=SysDeRegisterObjectClass('CWAudio')
|
---|
44 | IF rc=0 THEN DO
|
---|
45 | SAY 'Error while deregistering the CWAudio replacement class.'
|
---|
46 | END
|
---|
47 | '@PAUSE'
|
---|
48 | Exit
|
---|
49 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.