ObjFW  Check-in [2b0389eeeb]

Overview
Comment:Remove functions from runtime.h that don't exist.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2b0389eeebcd843e2c79c420d7002b996b510a7243612bb0ebdc9141524720ba
User & Date: js on 2012-11-30 15:37:28
Other Links: manifest | tags
Context
2012-11-30
15:40
Remove inline that lead to a missing symbol. check-in: 3b58706d32 user: js tags: trunk
15:37
Remove functions from runtime.h that don't exist. check-in: 2b0389eeeb user: js tags: trunk
2012-11-28
19:27
Remove broken forwarding target for ObjFW-RT. check-in: 53defb95a9 user: js tags: trunk
Changes

Modified src/runtime/runtime.h from [995079990b] to [865d6eebac].

181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
extern IMP class_replaceMethod(Class, SEL, IMP, const char*);
extern const char* objc_get_type_encoding(Class, SEL);
extern IMP objc_msg_lookup(id, SEL);
extern IMP objc_msg_lookup_super(struct objc_super*, SEL);
extern const char* protocol_getName(Protocol*);
extern BOOL protocol_isEqual(Protocol*, Protocol*);
extern BOOL protocol_conformsToProtocol(Protocol*, Protocol*);
extern void objc_thread_add(void);
extern void objc_thread_remove(void);
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_constructInstance(Class, void*);
extern void* objc_destructInstance(id);
extern id objc_autorelease(id);







<
<







181
182
183
184
185
186
187


188
189
190
191
192
193
194
extern IMP class_replaceMethod(Class, SEL, IMP, const char*);
extern const char* objc_get_type_encoding(Class, SEL);
extern IMP objc_msg_lookup(id, SEL);
extern IMP objc_msg_lookup_super(struct objc_super*, SEL);
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_constructInstance(Class, void*);
extern void* objc_destructInstance(id);
extern id objc_autorelease(id);