ObjFW  Check-in [5b29d50e2e]

Overview
Comment:objc_abi_protocol_list does not exist anymore.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | runtime
Files: files | file ages | folders
SHA3-256: 5b29d50e2ec84cd61b8ba51ca39f78eb76e552de01311b43a86a2321b36bba9d
User & Date: js on 2012-04-06 17:43:40
Other Links: branch diff | manifest | tags
Context
2012-04-08
14:06
Don't have any methods in Protocol. check-in: df24f80ab0 user: js tags: runtime
2012-04-06
17:43
objc_abi_protocol_list does not exist anymore. check-in: 5b29d50e2e user: js tags: runtime
14:07
Convert lookup-x86-elf.S to AT&T syntax. check-in: acc809db12 user: js tags: runtime
Changes

Modified src/runtime/runtime.h from [7dcff464ae] to [117a048a91].

26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

#ifdef __OBJC__
@interface Protocol
{
@private
	Class isa;
	const char *name;
	struct objc_abi_protocol_list *protocol_list;
	struct objc_abi_method_description_list *instance_methods;
	struct objc_abi_method_description_list *class_methods;
}
@end
#else
typedef const void Protocol;
#endif







|







26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

#ifdef __OBJC__
@interface Protocol
{
@private
	Class isa;
	const char *name;
	struct objc_protocol_list *protocol_list;
	struct objc_abi_method_description_list *instance_methods;
	struct objc_abi_method_description_list *class_methods;
}
@end
#else
typedef const void Protocol;
#endif