objcrtliphoneos.pas 432 B

1234567891011121314151617181920212223242526
  1. {
  2. objcrtliPhoneOS.pas
  3. Copyright (C) 2009 Dmitry Boyarintsev
  4. This unit is implementation for dynamic Objective-C Run-time Library based on run-time version 2.0
  5. headers included with XCode 3.1.2
  6. The original copyright note of is kept on each include file
  7. }
  8. unit objcrtliPhoneOS;
  9. {$mode objfpc}{$H+}
  10. interface
  11. uses
  12. objcrtl, objcrtl20;
  13. implementation
  14. initialization
  15. InitializeObjcRtl20(DefaultObjCLibName);
  16. end.