tb0166.pp 435 B

1234567891011121314151617
  1. { Old file: tbs0198.pp }
  2. { calling specifications aren't allowed in class declarations, this should be allowed OK 0.99.11 (PM) }
  3. {$mode objfpc}
  4. type
  5. to1 = class
  6. function GetCaps1 : Longint;virtual;abstract;
  7. function GetCaps2 : Longint;virtual;stdcall;
  8. function GetCaps : Longint;virtual;stdcall;abstract;
  9. end;
  10. function to1.GetCaps2 : Longint;stdcall;
  11. begin
  12. end;
  13. begin
  14. end.