soapemployeeintf.pas
来自「Delphi7从入门到精通及附书源码 Delphi7从入门到精通及附书源码」· PAS 代码 · 共 21 行
PAS
21 行
unit SoapEmployeeIntf;
interface
uses
InvokeRegistry, Types, XSBuiltIns;
type
ISoapEmployee = interface (IInvokable)
['{77D0D940-23EC-49A5-9630-ADE0751E3DB3}']
function GetEmployeeNames: string; stdcall;
function GetEmployeeData (EmpID: string): string; stdcall;
end;
implementation
initialization
InvRegistry.RegisterInterface (TypeInfo (ISoapEmployee));;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?