Changeset 39509 in vbox
- Timestamp:
- Dec 2, 2011 10:57:34 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/list.h
r34406 r39509 57 57 typedef PRTLISTNODE *PPRTLISTNODE; 58 58 59 /** The anchor (head/tail) of a doubly linked list. 60 * 61 * @remarks Please use this instead of RTLISTNODE to indicate a list 62 * head/tail. It makes the code so much easier to read. Also, 63 * always mention the actual list node type(s) in the comment. */ 64 typedef RTLISTNODE RTLISTANCHOR; 65 /** Pointer to a doubly linked list anchor. */ 66 typedef RTLISTANCHOR *PRTLISTANCHOR; 67 68 59 69 /** 60 70 * Initialize a list.
Note:
See TracChangeset
for help on using the changeset viewer.