Overview
| Comment: | runtime.h: Remove functions which are elsewhere. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.7 |
| Files: | files | file ages | folders |
| SHA3-256: |
caea9cb377f661b9911e091d75438847 |
| User & Date: | js on 2012-12-06 01:08:57 |
| Other Links: | branch diff | manifest | tags |
Context
|
2012-12-11
| ||
| 12:14 | OFTCPSocket: Fix a bug in -[accept]. (check-in: 37e165aaf6 user: js tags: 0.7) | |
|
2012-12-06
| ||
| 01:08 | runtime.h: Remove functions which are elsewhere. (check-in: caea9cb377 user: js tags: 0.7) | |
|
2012-12-02
| ||
| 16:42 | OFMethod: Add one more NULL check. (check-in: edc67e0190 user: js tags: 0.7) | |
Changes
Modified src/runtime/runtime.h from [865d6eebac] to [537e4b3b12].
| ︙ | ︙ | |||
185 186 187 188 189 190 191 |
extern const char* protocol_getName(Protocol*);
extern BOOL protocol_isEqual(Protocol*, Protocol*);
extern BOOL protocol_conformsToProtocol(Protocol*, Protocol*);
extern void objc_exit(void);
extern objc_uncaught_exception_handler objc_setUncaughtExceptionHandler(
objc_uncaught_exception_handler);
extern IMP (*objc_forward_handler)(id, SEL);
| < < | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
extern const char* protocol_getName(Protocol*);
extern BOOL protocol_isEqual(Protocol*, Protocol*);
extern BOOL protocol_conformsToProtocol(Protocol*, Protocol*);
extern void objc_exit(void);
extern objc_uncaught_exception_handler objc_setUncaughtExceptionHandler(
objc_uncaught_exception_handler);
extern IMP (*objc_forward_handler)(id, SEL);
extern id objc_autorelease(id);
extern void* objc_autoreleasePoolPush(void);
extern void objc_autoreleasePoolPop(void*);
extern id _objc_rootAutorelease(id);
static inline Class
object_getClass(id obj_)
|
| ︙ | ︙ |