uobjc35e.pp 344 B

12345678910111213141516171819202122
  1. { Written by Jonas Maebe in 2010, released into the public domain }
  2. {$mode objfpc}
  3. {$modeswitch objectivec1}
  4. unit uobjc35e;
  5. interface
  6. type
  7. MyExternalClass = objcclass(NSObject)
  8. function myTest: longint; message 'myTest';
  9. end;
  10. implementation
  11. function MyExternalClass.myTest: longint;
  12. begin
  13. result:=1234;
  14. end;
  15. end.