You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@574 8e941d3f-bd1b-0410-a28a-d453659cc2b4
31 lines
382 B
ObjectPascal
31 lines
382 B
ObjectPascal
unit foundation;
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}{$H+}
|
|
{$packrecords c}
|
|
{$endif}
|
|
|
|
{$linkframework Cocoa}
|
|
|
|
interface
|
|
|
|
uses SysUtils, ctypes, objc, MacOSAll;
|
|
|
|
{$define HEADER}
|
|
{$include Foundation.inc}
|
|
{$undef HEADER}
|
|
|
|
type
|
|
{$define CLASSES}
|
|
{$include Foundation.inc}
|
|
{$undef CLASSES}
|
|
|
|
implementation
|
|
|
|
{$define IMPLEMENTATION}
|
|
{$include Foundation.inc}
|
|
{$undef IMPLEMENTATION}
|
|
|
|
end.
|
|
|