The generic list interface in CyberLinkC. More...
#include <clist.h>
Data Fields | |
BOOL | headFlag |
struct _CgList * | prev |
struct _CgList * | next |
The generic list interface in CyberLinkC.
Each struct in CyberLinkC, that is designed to be a part of a list, must have these elements in their definition before the actual struct definition. The struct pointers are then cast to CgList* and operated with cg_list_* functions.
Marks the beginning of a list
struct _CgList* _CgList::next [read] |
Pointer to the previous list node
struct _CgList* _CgList::prev [read] |
Pointer to the next list node