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

  1. (*
  2.     
  3.     Some utility procedures....
  4.         
  5.         Created: 8/22/87 by Richie Bielak
  6.         
  7.         Copyright (c) 1987 by Richie Bielak
  8.         
  9.         This program maybe freely distributed, but please leave
  10.         my name in. Thanks.....Richie
  11.  
  12. *)
  13. DEFINITION MODULE ChaosUtil;
  14.  
  15. FROM SYSTEM IMPORT ADDRESS;
  16. FROM Intuition IMPORT IntuiText;
  17.  
  18. PROCEDURE InitTextItem (VAR it : IntuiText;  text : ADDRESS;
  19.             L, T : INTEGER);
  20.  
  21. END ChaosUtil.
  22.