mtdemo1dbserviceintf.~pas

来自「Delphi开发webservice的一套例子」· ~PAS 代码 · 共 26 行

~PAS
26
字号
{ Invokable interface declaration unit for IMTDemo1DBService }

unit MTDemo1DBServiceIntf;

interface

uses
  Types, XSBuiltIns;

type
  IMTDemo1DBService = interface(IInvokable)
    ['{BCECA81F-4428-472B-825D-4EFCADBBF5E0}']
    // Declare your invokable logic here using standard Object Pascal code
    // Remember to include a calling convention! (usually stdcall)
  end;

implementation

uses
  InvokeRegistry;

initialization
  InvRegistry.RegisterInterface(TypeInfo(IMTDemo1DBService), '', '');

end.
 

⌨️ 快捷键说明

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