📄 ace.inc
字号:
{ Master ACE Include File }
{ Copyright 1999, SCT Associates, Inc. )
{ -------- Delphi and C++Builder Version info -------- }
{VER80 Delphi 1}
{VER90 Delphi 2}
{VER93 C++ Builder 1}
{VER100 Delphi 3}
{VER110 C++Builder 2)
{VER120 Delphi 4}
{VER125 C++Builder 4}
{VER130 Delphi 5}
{ ---------- Set up defines for each version, and higher ---------- }
{ These defines are used for new interface calls starting in VER120}
{$ifndef VER80}
{$define VCL90PLUS}
{$ifndef VER90}
{$define VCL93PLUS}
{$ifndef VER93}
{$define VCL100PLUS}
{$ifndef VER100}
{$define VCL110PLUS}
{$ifndef VER110}
{$define VCL120PLUS}
{$ifndef VER120}
{$define VCL125PLUS}
{$ifndef VER125}
{$define VCL130PLUS}
{$endif}
{$endif}
{$endif}
{$endif}
{$endif}
{$endif}
{$endif}
{ ------ Standardize the compiler settings for all ACE units ------ }
{$B-} {Short-Circuit Boolean Evaluation}
{$R-} {Range Checking OFF}
{$Q-} {Overflow Checks OFF}
{$W-} {Only generate stack frames when needed}
{$T-} {Turn off Typed @ operator compiler switch}
{ If you really, really need to exclude any reference to BDE or any }
{ BDE replacements, you can undefine the AceBDE below and rebuild your }
{ application. This will reduce your program size a little, but this}
{ should be a very rare thing that you will need to do}
{$define AceBDE}
{ The AceDesignTime define is used to exclude some designtime code from }
{ a few ACE units when you are creating an EXE. In Delphi 5, this also }
{ avoids problems with linking in the DSGNINTF.DCU unit which Borland has}
{ made difficult to link in now.}
{ For Delphi 3 and higher, define AceDesignTime below when building packages}
{ otherwise, leave it undefined}
{$ifdef VCL100PLUS} {$define noAceDesignTime} {$endif}
{ For Delphi 1,2 and CBuilder 1 always leave it defined}
{$ifndef VCL100PLUS} {$define AceDesignTime} {$endif}
{ These defines are for C++ Builder 3 and higher}
{$ifdef VER110}{$ObjExportAll On}{$endif}
{$ifdef VER125}{$ObjExportAll On}{$endif}
{ These defines are used to exclude JPEG support}
{ for Delphi 1,2 and C++ Builder 1,3}
{$ifndef VER80}
{$ifndef VER90}
{$ifndef VER93}
{$ifndef VER110}
{$define AceJpeg}
{$endif}
{$endif}
{$endif}
{$endif}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -