home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / oopwin.exe / OWVARS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-07-08  |  529 b   |  27 lines

  1. { Universal variables}
  2. { Copyright (c) 1989 by Micro System Solutions }
  3.  
  4. {$A+ align on word boundry}
  5. {$B- short circuit boolean evaluation}
  6. {$E+ coprocessor emulation on}
  7. {$F+ force far calls on}
  8. {$I- disable io checking}
  9. {$N- do real-type calcs in software}
  10. {$O+ enable overlay code generation}
  11. {$R- disable range checking}
  12. {$S- disable stack overflow checking}
  13. {$V- disable variable checking}
  14.  
  15. unit OWVars;
  16.  
  17. interface
  18.  
  19. type
  20.     FileStr = string[12];
  21.  
  22. implementation
  23.  
  24. { No initialization section }
  25.  
  26. end.
  27.