mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
16 lines
253 B
ObjectPascal
16 lines
253 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode macpas}
|
|
{$calling mwpascal}
|
|
|
|
unit tw11254;
|
|
|
|
interface
|
|
|
|
procedure Iterate( function theCallback( theDataPtr: Pointer): Integer);
|
|
|
|
implementation
|
|
procedure Iterate( function theCallback( theDataPtr: Pointer): Integer); begin end;
|
|
|
|
end.
|