370
K
A
DAK
Structure/Constant Definitions
AMX List Header Structure (doubly linked lists)
struct amxlhs {
struct amxlhs *amlhhead; /* list head */
struct amxlhs *amlhtail; /* list tail */
unsigned int amlhoffs; /* byte offset to object node */
};
AMX List Node Structure
struct amxlns {
struct amxlns *amlnnext; /* next node in list */
struct amxlns *amlnprev; /* previous node in list */
};
AMX Key Node Structure
struct amxlks {
struct amxlks *amlknext; /* next node in list */
struct amxlks *amlkprev; /* previous node in list */
unsigned int amlkkey; /* node key */
};