summaryrefslogtreecommitdiff
path: root/libobjc/objc/deprecated/struct_objc_ivar_list.h
blob: 8f5051fb9675f601ee4822da1196c5d822479770 (plain)
1
2
3
4
5
6
7
8
9
10
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;