home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Essentials / SETUP.EXE / %MAINDIR% / EsConst.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-11-28  |  811 b   |  39 lines

  1. {*********************************************************}
  2. {*                  ESCONST.PAS 1.05                     *}
  3. {*      Copyright (c) 1997-98 TurboPower Software Co     *}
  4. {*                 All rights reserved.                  *}
  5. {*********************************************************}
  6.  
  7. {$I ES.INC}
  8.  
  9. {$B-} {Complete Boolean Evaluation}
  10. {$I+} {Input/Output-Checking}
  11. {$P+} {Open Parameters}
  12. {$T-} {Typed @ Operator}
  13. {$W-} {Windows Stack Frame}
  14. {$X+} {Extended Syntax}
  15.  
  16. {$IFNDEF Win32}
  17.   {$G+} {286 Instructions}
  18.   {$N+} {Numeric Coprocessor}
  19.   {$C MOVEABLE,DEMANDLOAD,DISCARDABLE}
  20. {$ENDIF}
  21.  
  22. unit EsConst;
  23.   {-constant declarations}
  24.  
  25. {$IFDEF Win32}
  26.   {$R ESCONST.R32}
  27. {$ELSE}
  28.   {$R ESCONST.R16}
  29. {$ENDIF}
  30.  
  31. interface
  32.  
  33. const
  34. {$I ESCONST.INC}
  35.  
  36. implementation
  37.  
  38. end.
  39.