IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 442


Ignore:
Timestamp:
Apr 19, 2004, 9:39:11 AM (22 years ago)
Author:
rhl
Message:

Put the "which" back into the iterator functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psDlist.h

    r395 r442  
    7171/** Set the iterator */
    7272void psDlistSetIterator(psDlist *list,  ///< list to retrieve element from
    73                         int where)      ///< index, PS_DLIST_HEAD, or PS_DLIST_TAIL
     73                        int where,      ///< index, PS_DLIST_HEAD, or PS_DLIST_TAIL
     74                        int which)      ///< the desired iterator
    7475;
    7576
    7677/** Get next element relative to iter */
    77 void *psDlistGetNext(psDlist *list)     ///< list to retrieve element from
     78void *psDlistGetNext(psDlist *list,     ///< list to retrieve element from
     79                     int which)         ///< the desired iterator
    7880;
    7981
    8082/** Get prev element relative to iter */
    81 void *psDlistGetPrev(psDlist *list)     ///< list to retrieve element from
     83void *psDlistGetPrev(psDlist *list,     ///< list to retrieve element from
     84                     int which)         ///< the desired iterator
    8285;
    8386
Note: See TracChangeset for help on using the changeset viewer.