vg.inc

来自「大家是不是为不知道如何在VB学到绝地程序」· INC 代码 · 共 47 行

INC
47
字号
{*******************************************************}
{                                                       }
{         Vladimir Gaitanoff Delphi VCL Library         }
{         Include file                                  }
{                                                       }
{         Copyright (c) 1997, 1999                      }
{                                                       }
{*******************************************************}


{$IFNDEF VER80}
  {$IFNDEF VER90}
    {$IFNDEF VER93}
      {$DEFINE _D3_} { Delphi 3.0 or higher }

      {$IFDEF VER110} { Borland C++Builder 3.0 }
        {$DEFINE CBUILDER}
        {$ObjExportAll On}
      {$ELSE}
        {$IFNDEF VER100}
          {$DEFINE _D4_}   { Delphi 4.0 or higher }
          {$IFDEF VER130}
            {$DEFINE _D5_}   { Delphi 5.0 or higher }
          {$ENDIF}
        {$ENDIF}
      {$ENDIF}
    {$ENDIF}
  {$ENDIF}
{$ENDIF}

{ Comment next conditional defines if needed }
{$DEFINE RX240} { RX library 2.40 or higher }

{$IFDEF _D3_}
  {$DEFINE MIDAS} { Multi-tier part of library }
{$ENDIF}

{ Don't change next conditional defines }
{$B-} {- Complete Boolean Evaluation }
{$R-} {- Range-Checking }
{$V-} {- Var-String Checking }
{$T-} {- Typed @ operator }
{$X+} {- Extended syntax }
{$P+} {- Open string params }
{$J+} {- Writeable structured consts }
{$H+} {- Use long strings by default }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?