testlibexports.out

来自「格式化源码的最新板」· OUT 代码 · 共 35 行

OUT
35
字号
library TestLibExports;

{ AFS 7 Feb 2K
  This code is swiped from the delphi help
  as it demonstrates a particularly obscure pice of syntax (exports)

  This unit may not even compile
  It is test cases for the code formatting utility
}

uses
  EdInit,
  EdInOut,
  EdFormat,
  EdPrint;

exports

  InitEditors,
  DoneEditors iNDex 17 Name Done,
  InsertText Name Insert,
  DeleteSelection Name Delete,
  FormatSelection,
  PrintSelection Name Print resident,
  SetErrorHandler INDEX 23;

  function foo: boolean; local;
  begin
    Result := False;
  end;

begin
  InitLibrary;
end.

⌨️ 快捷键说明

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