SUBENTRY

typedef _Packed struct SUBENTRY
{
  _Packed struct SUBENTRY   *next;
  void                      *subentrydata;
  char                      type[12];
} SUBENTRY, * P_SUBENTRY;
Note: Given that C requires pointers to indicate the data type they will point to, a void pointer must be used here since more than one structure may be attached, the ITEM_LIST or the VER structure.