tw11254a.pp 285 B

12345678910111213141516171819
  1. { %fail }
  2. {$mode macpas}
  3. {$calling mwpascal}
  4. unit tw11254a;
  5. interface
  6. type
  7. t1 = function ( theDataPtr: Pointer): Integer;
  8. t2 = function ( theDataPtr: Pointer): Integer;
  9. procedure Iterate( theCallback: t1);
  10. implementation
  11. procedure Iterate( theCallback: t2); begin end;
  12. end.