mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 07:19:35 +02:00
17 lines
206 B
ObjectPascal
17 lines
206 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
type
|
|
TMainForm = class
|
|
end;
|
|
|
|
function FreeFPgtkObjects (Data:pointer) : longbool; Cdecl;
|
|
|
|
begin
|
|
With (Data as TMainForm) do // <<--- this is the one
|
|
;
|
|
end;
|
|
|
|
begin
|
|
end.
|