Esempio n. 1
0
PNode DataList::Prev(PNode what)
{
    if (what.Ok())
        return what->list_prev;
    return NULL;
}
Esempio n. 2
0
PNode DataList::Next(PNode what)
{
    if (what.Ok())
        return what->list_next;
    return NULL;
}