Changeset 4 for trunk/classes/bin


Ignore:
Timestamp:
Jul 13, 2017, 5:17:57 AM (8 years ago)
Author:
stevenhl
Message:

Import modifications from cwmm-0_2_9-work-01_10_2006.zip dated 2006-08-27

Location:
trunk/classes/bin
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/bin/audioext.rx

    r2 r4  
    11/* rexx - Get the extension of audio types added using
    22   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.
    44*/
    55
     
    88
    99allExt=""
     10waveaudio=""
    1011
    1112/* Get MMOS2 directory */
     
    6061        WHEN TRANSLATE(curExt)="FLA" THEN NOP
    6162        WHEN TRANSLATE(curExt)="FLAC" THEN NOP
     63        WHEN TRANSLATE(curExt)="WAV" THEN NOP
    6264
    6365        OTHERWISE
     
    8183        END
    8284        a=a+1
     85        IF a>mmini.0 THEN return
    8386END
    8487return
     
    99102                        END
    100103                        a=a+1
     104                        IF a>mmini.0 THEN return ""
    101105                END
    102106        END
    103107END
    104108return ""
    105 
  • trunk/classes/bin/chktimid.rx

    r2 r4  
    6161        END
    6262        a=a+1
     63        IF a>mmini.0 THEN return 0
    6364END
    6465return 0
  • trunk/classes/bin/imageadd.rx

    r2 r4  
    11/* 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.
    44*/
    55
     
    99EXIT
    1010
    11 
  • trunk/classes/bin/imageext.rx

    r2 r4  
    11/* rexx - Return all image extensions we have a MM class for.   
    2    This script is called by M_MMImage. After getting the extensions
     2   This script is called by M_MMImage and mmfind.exe. After getting the extensions
    33   M_MMImage checks if there're any additional extensions handled by
    44   installed image IO procedures. If yes, these unhandled extensions
     
    88
    99
    10 allExt="_IM DIB GIF JPG VID PCX PCD TIF TGA BMP"
     10allExt="*._IM,*.DIB,*.GIF,*.JPG,*.VID,*.PCX,*.PCD,*.TIF,*.TGA,*.BMP"
    1111return allExt
    1212EXIT
    1313
    14 
Note: See TracChangeset for help on using the changeset viewer.