home *** CD-ROM | disk | FTP | other *** search
- /* This example will demonstrate the use of the mount_partition command
- in DiscChanger.
-
- (C)1993-1995 Asimware Innovations Inc. */
-
-
- options results
- address "DiscChanger_ARexx"
-
- max_partitions
- if rc ~= 0 then do
- say 'Failed with 'rc'.'
- exit
- end
-
-
- we_want = result
- say 'We are mounting partition 'we_want' out of 'result' valid partitions.'
-
- mount_partition we_want
-
- exit
-