Changeset 4 for trunk/classes/bin
- Timestamp:
- Jul 13, 2017, 5:17:57 AM (8 years ago)
- Location:
- trunk/classes/bin
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/bin/audioext.rx
r2 r4 1 1 /* rexx - Get the extension of audio types added using 2 2 the multimedia setup object. For example *.FLA. 3 This script is called by M_MMAudio .3 This script is called by M_MMAudio and mmfind.exe. 4 4 */ 5 5 … … 8 8 9 9 allExt="" 10 waveaudio="" 10 11 11 12 /* Get MMOS2 directory */ … … 60 61 WHEN TRANSLATE(curExt)="FLA" THEN NOP 61 62 WHEN TRANSLATE(curExt)="FLAC" THEN NOP 63 WHEN TRANSLATE(curExt)="WAV" THEN NOP 62 64 63 65 OTHERWISE … … 81 83 END 82 84 a=a+1 85 IF a>mmini.0 THEN return 83 86 END 84 87 return … … 99 102 END 100 103 a=a+1 104 IF a>mmini.0 THEN return "" 101 105 END 102 106 END 103 107 END 104 108 return "" 105 -
trunk/classes/bin/chktimid.rx
r2 r4 61 61 END 62 62 a=a+1 63 IF a>mmini.0 THEN return 0 63 64 END 64 65 return 0 -
trunk/classes/bin/imageadd.rx
r2 r4 1 1 /* rexx - Return additional image extensions the MMImage class 2 should handle. 3 This script is called by M_MMImage .2 should handle. 3 This script is called by M_MMImage and mmfind.exe. 4 4 */ 5 5 … … 9 9 EXIT 10 10 11 -
trunk/classes/bin/imageext.rx
r2 r4 1 1 /* rexx - Return all image extensions we have a MM class for. 2 This script is called by M_MMImage . After getting the extensions2 This script is called by M_MMImage and mmfind.exe. After getting the extensions 3 3 M_MMImage checks if there're any additional extensions handled by 4 4 installed image IO procedures. If yes, these unhandled extensions … … 8 8 9 9 10 allExt=" _IM DIB GIF JPG VID PCX PCD TIF TGABMP"10 allExt="*._IM,*.DIB,*.GIF,*.JPG,*.VID,*.PCX,*.PCD,*.TIF,*.TGA,*.BMP" 11 11 return allExt 12 12 EXIT 13 13 14
Note:
See TracChangeset
for help on using the changeset viewer.