]>
git.saurik.com Git - apple/objc4.git/blob - runtime/objc.h
2 * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
25 * Copyright 1988-1996, NeXT Software, Inc.
31 #import <objc/objc-api.h> // for OBJC_EXPORT
35 typedef struct objc_class
*Class
;
36 typedef struct objc_object
{
41 typedef struct objc_selector
*SEL
;
42 typedef id (*IMP
)(id
, SEL
, ...);
43 typedef signed char BOOL
;
44 // BOOL is explicitly signed so @encode(BOOL) == "c" rather than "C"
45 // even if -funsigned-char is used.
46 #define OBJC_BOOL_DEFINED
53 #define Nil __DARWIN_NULL /* id of Nil class */
57 #define nil __DARWIN_NULL /* id of Nil instance */
61 #define __strong /* empty */
64 OBJC_EXPORT
const char *sel_getName(SEL sel
);
65 OBJC_EXPORT SEL
sel_registerName(const char *str
);
66 OBJC_EXPORT
const char *object_getClassName(id obj
);
67 OBJC_EXPORT
void *object_getIndexedIvars(id obj
);
72 // The following declarations are provided here for source compatibility.
76 typedef unsigned long uarith_t
;
77 # define ARITH_SHIFT 32
80 typedef unsigned uarith_t
;
81 # define ARITH_SHIFT 16
84 OBJC_EXPORT BOOL
sel_isMapped(SEL sel
);
85 OBJC_EXPORT SEL
sel_getUid(const char *str
);
89 #define ISSELECTOR(sel) sel_isMapped(sel)
90 #define SELNAME(sel) sel_getName(sel)
91 #define SELUID(str) sel_getUid(str)
92 #define NAMEOF(obj) object_getClassName(obj)
93 #define IV(obj) object_getIndexedIvars(obj)
97 #endif /* _OBJC_OBJC_H_ */