DataServIntf.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit DataServIntf;
  2. interface
  3. type
  4.   ICustomData = interface (IInvokable)
  5.   ['{890B77BE-661E-4301-8A29-0B8274D27116}']
  6.     function GetData: string; stdcall;
  7.     function SendDelta (Delta: string): Boolean;
  8.   end;
  9. implementation
  10. uses
  11.   InvokeRegistry;
  12. initialization
  13.   InvRegistry.RegisterInterface(TypeInfo(ICustomData));
  14. end.