Changeset 53585 in vbox
- Timestamp:
- Dec 21, 2014 4:05:05 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97347
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/list.h
r52358 r53585 54 54 /** Pointer to a list node. */ 55 55 typedef RTLISTNODE *PRTLISTNODE; 56 /** Pointer to a const list node. */ 57 typedef RTLISTNODE const *PCRTLISTNODE; 56 58 /** Pointer to a list node pointer. */ 57 59 typedef PRTLISTNODE *PPRTLISTNODE; … … 65 67 /** Pointer to a doubly linked list anchor. */ 66 68 typedef RTLISTANCHOR *PRTLISTANCHOR; 69 /** Pointer to a const doubly linked list anchor. */ 70 typedef RTLISTANCHOR const *PCRTLISTANCHOR; 67 71 68 72
Note:
See TracChangeset
for help on using the changeset viewer.