Changeset 27 for trunk/src/kmk/lst.lib
- Timestamp:
- Nov 27, 2002, 1:35:20 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/lst.lib/lstInt.h
r25 r27 51 51 struct ListNode *prevPtr; /* previous element in list */ 52 52 struct ListNode *nextPtr; /* next in list */ 53 #ifdef __IBMC__ 54 int useCount:8, /* Count of functions using the node. 55 * node may not be deleted until count 56 * goes to 0 */ 57 flags:8; /* Node status flags */ 58 #else 53 59 short useCount:8, /* Count of functions using the node. 54 60 * node may not be deleted until count 55 61 * goes to 0 */ 56 62 flags:8; /* Node status flags */ 63 #endif 57 64 ClientData datum; /* datum associated with this element */ 58 65 } *ListNode;
Note:
See TracChangeset
for help on using the changeset viewer.