- Timestamp:
- Aug 28, 2018 9:25:24 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r73914 r73935 3158 3158 typedef struct RTSTRSPACECORE 3159 3159 { 3160 /** Hash key. Don't touch. */3161 uint32_t Key;3162 3160 /** Pointer to the left leaf node. Don't touch. */ 3163 3161 PRTSTRSPACECORE pLeft; 3164 3162 /** Pointer to the left right node. Don't touch. */ 3165 3163 PRTSTRSPACECORE pRight; 3166 /** Pointer to the list of string with the same key. Don't touch. */3164 /** Pointer to the list of string with the same hash key value. Don't touch. */ 3167 3165 PRTSTRSPACECORE pList; 3166 /** Hash key. Don't touch. */ 3167 uint32_t Key; 3168 3168 /** Height of this tree: max(heigth(left), heigth(right)) + 1. Don't touch */ 3169 3169 unsigned char uchHeight;
Note:
See TracChangeset
for help on using the changeset viewer.