typedef struct _RTL_BALANCED_LINKS
{
    RTL_BALANCED_LINKS *Parent;
    RTL_BALANCED_LINKS *LeftChild;
    RTL_BALANCED_LINKS *RightChild;
    char Balance;
    unsigned char Reserved[3];
} RTL_BALANCED_LINKS, *PRTL_BALANCED_LINKS;