Files
lazarus-ccr/bindings/pascocoa/foundation/foundation.pas
sekelsenmat fa69e42d57 Improves Cocoa bindings
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@574 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-09-29 00:47:50 +00:00

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.