You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@449 8e941d3f-bd1b-0410-a28a-d453659cc2b4
27 lines
414 B
PHP
Executable File
27 lines
414 B
PHP
Executable File
{%mainunit foundation.pas}
|
|
(* NSObjCRuntime.h
|
|
Copyright (c) 1994-2007, Apple Inc. All rights reserved.
|
|
*)
|
|
|
|
{$ifdef HEADER}
|
|
{$ifndef NSOBJCRUNTIME_PAS_H}
|
|
{$define NSOBJCRUNTIME_PAS_H}
|
|
|
|
type
|
|
NSInteger = Integer;
|
|
NSUInteger = LongWord;
|
|
|
|
const
|
|
NSOrderedAscending = 1;
|
|
NSOrderedSame = 2;
|
|
NSOrderedDescending = 3;
|
|
|
|
type
|
|
NSComparisonResult = Integer;
|
|
|
|
const
|
|
NSNotFound = MaxInt;
|
|
|
|
{$endif}
|
|
{$endif}
|