home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / printfiles / deutsch / rexx / show < prev    next >
Text File  |  1995-02-27  |  2KB  |  34 lines

  1. /* ************************************************************* */
  2. /* PrintFiles V1.0d Jun 27 1992  Preferences - Arexx File */
  3. /*  erzeugt am   Samstag , 27. Juni  1992  17:54:06 */
  4. /* ************************************************************* */
  5.  
  6.  
  7. /* ************************************************************* */
  8. /* Start Block */
  9. /* ************************************************************* */
  10. options results   /* Ergebnisse anfordern */
  11. if ~show(ports,'PRINTFILES')then do   /* Läuft PrintFiles schon ? */
  12.     address command 'printfiles'   /* wenn nicht, dann ein Startversuch */
  13. address command 'sys:rexxc/WaitForPort PRINTFILES'  /* noch ein bisschen abwarten */
  14. end   /* Noch'n Versuch */
  15. if ~(show(ports,'PRINTFILES')) then return 5   /* Rückgabewert 5 bei Mißerfolg */
  16. address  PRINTFILES  /* Kommandos an PrintFiles */
  17.  
  18.  
  19. /* ************************************************************* */
  20. /* Verteiler Block */
  21. /* ************************************************************* */
  22. pass text 'intern'      /* Interne Routine für Texte */
  23. pass prog 'intern'      /* Interne Routine für Programme */
  24. pass icon 'intern'      /* Interne Routine für Icons */
  25. pass iff 'on'     /* IFF-Dateien extern weitergeben */
  26. insertiff 'ILBM sys:utilities/display'      /* IFF-Chunk und entsprechendes Programm */
  27. insertiff 'ANIM work:dpaintiv/player'      /* IFF-Chunk und entsprechendes Programm */
  28. insertiff 'VDEO work:dpaintiv/dvplayer'      /* IFF-Chunk und entsprechendes Programm */
  29.  
  30.  
  31. /* ************************************************************* */
  32. /* *** Ende der Datei *** */
  33. /* ************************************************************* */
  34.