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 >
Wrap
Text File
|
1991-08-10
|
538b
|
27 lines
DEFINITION MODULE options;
(*
by : Greg Mumm
This module deals with the various user adjustable options available
to anyone using the program. It's purpose is twofold:
1) To allow other modules information as to what the options
are ( i.e. should the "begin" keyword go on the next
line ? )
*)
TYPE
OptionsType = RECORD
BeginNewLine : BOOLEAN;
END;
VAR
OptionsRec : OptionsType;
END options.