mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
15 lines
273 B
ObjectPascal
15 lines
273 B
ObjectPascal
{$mode objfpc}
|
|
type
|
|
to1 = class
|
|
function GetCaps1 : Longint;virtual;abstract;
|
|
function GetCaps2 : Longint;virtual;stdcall;
|
|
function GetCaps : Longint;virtual;stdcall;abstract;
|
|
end;
|
|
|
|
function to1.GetCaps2 : Longint;stdcall;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|