Files
lazarus-ccr/bindings/pascocoa/foundation/foundation.pas

31 lines
382 B
ObjectPascal
Raw Normal View History

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.