In libobjc/: 2010-10-10 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / libobjc / objc / deprecated / struct_objc_method_list.h
blob5156cabbf2d263aec5c3d4719fb88f7d63da2d13
1 typedef struct objc_method_list {
2 struct objc_method_list* method_next; /* This variable is used to link
3 a method list to another. It
4 is a singly linked list. */
5 int method_count; /* Number of methods defined in
6 this structure. */
7 Method method_list[1]; /* Variable length
8 structure. */
9 } MethodList, *MethodList_t;