delforex.dpr

来自「delphi代码格式化,最新汉化版」· DPR 代码 · 共 40 行

DPR
40
字号
library DelForEx;

{ Important note about DLL memory management: ShareMem must be the
  first unit in your library's USES clause AND your project's (select
  View-Project Source) USES clause if your DLL exports any procedures or
  functions that pass strings as parameters or function results. This
  applies to all strings passed to and from your DLL--even those that
  are nested in records and classes. ShareMem is the interface unit to
  the DELPHIMM.DLL shared memory manager, which must be deployed along
  with your DLL. To avoid using DELPHIMM.DLL, pass string information
  using PChar or ShortString parameters. }
{$IFNDEF Ver90}
Compile this expert only for Delphi 2
{$ENDIF}

uses
  ShareMem,
  Forms,
  Windows,
  ExptIntf,
  ToolIntf,
  VirtIntf,
  SysUtils,
  Classes,
  DelForExpert in 'Delphi 2\DelForExpert.pas',
  MyIDEStream in 'Delphi 2\MyIDEStream.pas',
  Progr in 'Delphi 2\progr.pas' {ProgressDlg},
  OptDlg in 'Delphi 2\OptDlg.pas' {OptionsDlg},
  DelExpert in 'Delphi 2\DelExpert.pas' {DelExpertDlg},
  Delfor1 in 'Delphi 2\Delfor1.pas',
  OObjects in 'oObjects.pas',
  Delphi2 in '\ALG\PROGRAMS\ASO\Shared\Delphi2.pas';

exports
  InitExpert Name ExpertEntryPoint;


begin
end.

⌨️ 快捷键说明

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