uintfs.pas

来自「这是不可多得的源代码」· PAS 代码 · 共 25 行

PAS
25
字号
unit uIntfs;

interface

uses Classes;

type
  IPortfolio = interface
    function GetAuthors : TStringList; stdcall;
    function GetBooks(const sName : String) : TStringList; stdcall;
  end;

  IAuthor = interface
    function GetCategories : TStringList; stdcall;
  end;

  ICategory = interface
    function GetBooks : TStringList; stdcall;
    procedure CreateBook(const sName : String; const iPrice : Integer);
  end;

implementation

end.

⌨️ 快捷键说明

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