home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / utils / graphic / viewers / general / amiga / sprsh31b / support.def < prev    next >
Encoding:
Modula Definition  |  1989-10-20  |  1.1 KB  |  28 lines

  1. DEFINITION MODULE Support;
  2.  
  3. (*======================================================================*)
  4. (*                       SuperSHAM Support Routines                     *)
  5. (*======================================================================*)
  6. (*         ⌐ Copyright 1989 Robert Salesas, All Rights Reserved         *)
  7. (*                         Use as you please!!!                         *)
  8. (*======================================================================*)
  9. (*      Version: 3.00           Author : Robert Salesas                 *)
  10. (*      Date   : 29-Sept-89     Changes: Original                       *)
  11. (*======================================================================*)
  12.  
  13. FROM LoadSHAM         IMPORT  SHAMRegsPtr;
  14. FROM Intuition        IMPORT  WindowPtr;
  15.  
  16.   PROCEDURE Alert(First, Second : ARRAY OF CHAR) : BOOLEAN;
  17. (*
  18.     Places Copyright notice on first line and user text on following
  19.     lines.  Has PRINT and CONTINUE as user buttons.
  20. *)
  21.  
  22.   PROCEDURE PrintScreen(Wp : WindowPtr;  Regs : SHAMRegsPtr) : BOOLEAN;
  23. (*
  24.     Prints a SHAM screen IN correct form.  Ceases TO print when a mouse
  25.     button is pressed.
  26. *)
  27. END Support.
  28.