mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
18 lines
248 B
ObjectPascal
18 lines
248 B
ObjectPascal
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
type
|
|
{$ifndef fpc}
|
|
codepointer = pointer;
|
|
{$endif}
|
|
tmethod = record
|
|
code : codepointer;
|
|
data : pointer;
|
|
end;
|
|
|
|
var
|
|
p : procedure(l : longint) of object;
|
|
|
|
begin
|
|
tmethod(p).data:=nil;
|
|
end.
|