mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-02 05:22:36 +02:00
20 lines
285 B
ObjectPascal
20 lines
285 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode macpas}
|
|
{$calling mwpascal}
|
|
|
|
unit tw11254a;
|
|
|
|
interface
|
|
|
|
type
|
|
t1 = function ( theDataPtr: Pointer): Integer;
|
|
t2 = function ( theDataPtr: Pointer): Integer;
|
|
|
|
procedure Iterate( theCallback: t1);
|
|
|
|
implementation
|
|
procedure Iterate( theCallback: t2); begin end;
|
|
|
|
end.
|