gcc/libobjc/objc/deprecated/struct_objc_ivar_list.h

11 lines
555 B
C
Raw Normal View History

2010-10-10 13:18:57 +02:00
typedef struct objc_ivar_list {
int ivar_count; /* Number of structures (Ivar)
contained in the list. One
structure per instance
variable defined in the
class. */
struct objc_ivar ivar_list[1]; /* Variable length
structure. */
} IvarList, *IvarList_t;