Ignore:
Timestamp:
Nov 27, 2002, 1:35:20 AM (23 years ago)
Author:
bird
Message:

OS2 / VAC308

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/lst.lib/lstInt.h

    r25 r27  
    5151        struct ListNode *prevPtr;   /* previous element in list */
    5252        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
    5359        short           useCount:8, /* Count of functions using the node.
    5460                                     * node may not be deleted until count
    5561                                     * goes to 0 */
    5662                        flags:8;    /* Node status flags */
     63#endif
    5764        ClientData      datum;      /* datum associated with this element */
    5865} *ListNode;
Note: See TracChangeset for help on using the changeset viewer.