home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / MODULAV2GERMAN.DMS / in.adf / Def.zoo / FileMessage.def < prev    next >
Encoding:
Modula Definition  |  1988-09-13  |  336 b   |  18 lines

  1. (* $N- *)
  2. DEFINITION MODULE FileMessage;
  3. (* 2.0 / 8.4.87 / ms *)
  4.  
  5. FROM FileSystem IMPORT
  6.  Response;
  7.  
  8. TYPE
  9.  StrPtr = POINTER TO ARRAY [0..255] OF CHAR;
  10.  
  11. (*
  12.  * ResponseText returns a pointer to a string containing the message text
  13.  * for the given file response
  14.  *)
  15. PROCEDURE ResponseText(res: Response; VAR p: StrPtr);
  16.  
  17. END FileMessage.
  18.