home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / STREAM15.ZIP / STDEFINE.INC < prev    next >
Encoding:
Text File  |  1993-03-27  |  422 b   |  18 lines

  1. { This file sets some conditional compilation defines }
  2.  
  3. {$define overlays}  { Assume we'll want the overlay code, but turn
  4.                       it off in certain cases }
  5. {$ifdef windows}
  6.   {$undef overlays}
  7. {$endif}
  8.  
  9. {$ifdef dpmi}
  10.   {$undef overlays}
  11. {$endif}
  12.  
  13. { Only TPW uses "WObjects"; BP 7 calls the same unit "Objects" }
  14. {$ifdef windows}
  15.   {$ifndef ver70}
  16.     {$define wobjects}
  17.   {$endif}
  18. {$endif}