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

  1. (*
  2.  
  3.     This module will save the current picture into an IFF
  4.     file.
  5.     
  6.     Created: 8/31/87 by Richie Bielak
  7.     
  8.     Modified:
  9.     
  10.     Copyright © 1987 by Richie Bielak
  11.     
  12.     This program can be freely copied, but please leave 
  13.     my name in. Thanks....Richie
  14.  
  15. *)
  16. DEFINITION MODULE ChaosSave;
  17.  
  18.   FROM Intuition IMPORT ScreenPtr;
  19.  
  20.   PROCEDURE SavePicture (w, h : CARDINAL; sp : ScreenPtr);
  21.  
  22. END ChaosSave.
  23.