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