home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 541a.lha / M2Pascal / src / options.def < prev    next >
Text File  |  1991-08-10  |  538b  |  27 lines

  1. DEFINITION MODULE options;
  2.  
  3. (*  
  4.  
  5.  
  6.    by : Greg Mumm
  7.  
  8.    This module deals with the various user adjustable options available
  9.    to anyone using the program. It's purpose is twofold:  
  10.  
  11.                 1) To allow other modules information as to what the options 
  12.                    are ( i.e. should the "begin" keyword go on the next
  13.                    line ? )
  14. *)
  15.  
  16.  
  17.  
  18. TYPE
  19.       OptionsType    =  RECORD
  20.                          BeginNewLine     :  BOOLEAN;
  21.                       END;
  22. VAR
  23.       OptionsRec : OptionsType;
  24.  
  25.  
  26. END options.
  27.