dataservintf.pas

来自「delphi6 programming example」· PAS 代码 · 共 21 行

PAS
21
字号
unit DataServIntf;

interface

type
  ICustomData = interface (IInvokable)
  ['{890B77BE-661E-4301-8A29-0B8274D27116}']
    function GetData: string; stdcall;
    function SendDelta (Delta: string): Boolean;
  end;

implementation

uses
  InvokeRegistry;

initialization
  InvRegistry.RegisterInterface(TypeInfo(ICustomData));

end.

⌨️ 快捷键说明

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