home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 365.lha / Batchman_v1.1 / Code / BatchIntuition.def < prev    next >
Encoding:
Modula Definition  |  1990-04-11  |  517 b   |  21 lines

  1. (* Copyright 1988 Michal Todorovic.  *)
  2. (* For non-commercial use only.      *)
  3.  
  4. DEFINITION MODULE BatchIntuition;
  5.  
  6. FROM Intuition IMPORT WindowPtr, GadgetPtr;
  7. FROM DosStuff  IMPORT ShortString, LongString;
  8.  
  9.  
  10.  
  11. PROCEDURE OpenWin(VAR Win : WindowPtr; Gad : GadgetPtr;
  12.                       H : INTEGER);
  13.  
  14. PROCEDURE CloseWin(VAR Win : WindowPtr);
  15.  
  16. PROCEDURE SetUpGadgets(Num : INTEGER; 
  17.                        VAR Info : ARRAY OF ShortString;
  18.                        VAR Top : INTEGER) : GadgetPtr;
  19.  
  20. END BatchIntuition.
  21.