Files
lazarus-ccr/bindings/pascocoa/appkit/appkit.pas
sekelsenmat ce8ee9bb1f Improves pascocoa and texteditor example
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@584 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-10-06 13:26:48 +00:00

44 lines
713 B
ObjectPascal

{
AppKit.h
Application Kit
Copyright (c) 1994-2005, Apple Computer, Inc.
All rights reserved.
This file is included by all AppKit application source files for easy building. Using this file is preferred over importing individual files because it will use a precompiled version.
}
unit appkit;
{$ifdef fpc}
{$mode objfpc}
{$packrecords c}
{$endif}
interface
uses ctypes, MacOSAll, objc, foundation;
{$define HEADER}
{$include AppKit.inc}
{$undef HEADER}
type
{$define FORWARD}
{$include AppKit.inc}
{$undef FORWARD}
{$define CLASSES}
{$include AppKit.inc}
{$undef CLASSES}
var
NSApp: NSApplication;
implementation
{$define IMPLEMENTATION}
{$include AppKit.inc}
{$undef IMPLEMENTATION}
end.