home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 093.lha / Chaos / Sources / sherror.def < prev    next >
Encoding:
Modula Definition  |  1986-11-21  |  486 b   |  26 lines

  1. (*
  2.     This module can be used to display an error on top
  3.     of a screen. All you have to do to use it is to
  4.     pass an error string and a Screen pointer.
  5.     
  6.     Created: 9/17/87 by Richie Bielak
  7.     
  8.     Modified:
  9.  
  10.     Copyright © 1987 by Richie Bielak
  11.  
  12.     This program maybe freely copied, but please leave my
  13.     name in. Thanks.....Richie
  14.     
  15.  
  16. *)
  17. DEFINITION MODULE ShowError;
  18.  
  19. FROM Intuition IMPORT ScreenPtr;
  20.  
  21.   (* $D- *)
  22.   PROCEDURE Error (sp : ScreenPtr; text : ARRAY OF CHAR);
  23.   (* $D+ *)
  24.  
  25. END ShowError.
  26.