home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / CreativeComputers.iso / shareware / fractals / ffex / source / arpreq.def next >
Encoding:
Modula Definition  |  1994-11-17  |  687 b   |  20 lines

  1. (* Modul   : ArpReq                             *)
  2. (* Projekt : FFEX                             *)
  3. (* Autor   : Robert Brandner                         *)
  4. (* Funktion: Unterstⁿtzung des ARP-Filerequesters             *)
  5.  
  6. DEFINITION MODULE ArpReq;
  7.  
  8. FROM Intuition IMPORT WindowPtr;
  9. FROM SYSTEM    IMPORT ADDRESS;
  10.  
  11. PROCEDURE GetFileName(w:WindowPtr;title,path:ADDRESS):BOOLEAN;
  12.  
  13. (* w     : Requester erscheint in gleichem Screen wie Window w       *)
  14. (* title : Windowtitel (z.B. Load File ... )                     *)
  15. (* path  : Pfad und Filename; kann bei Aufruf Defaultwert enthalten  *)
  16. (*         erhΣlt als Ergebnis den gewΣhlten Filenamen (incl. Pfad)  *)
  17. (* Funktionsergebnis: TRUE, wenn <OK> geklickt, FALSE bei <CANCEL>.  *)
  18.  
  19. END ArpReq.def
  20.