//0x10 bytes (sizeof)
struct _RTL_BALANCED_LINKS
{
    struct _RTL_BALANCED_LINKS* Parent;                                     //0x0
    struct _RTL_BALANCED_LINKS* LeftChild;                                  //0x4
    struct _RTL_BALANCED_LINKS* RightChild;                                 //0x8
    CHAR Balance;                                                           //0xc
    UCHAR Reserved[3];                                                      //0xd
};