Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 327 of file ftcmru.c.
Referenced by ftc_face_node_done(), and FTC_Manager_RemoveFaceID().
{ FTC_MruNode first, node, next; first = list->nodes; while ( first && ( selection == NULL || selection( first, key ) ) ) { FTC_MruList_Remove( list, first ); first = list->nodes; } if ( first ) { node = first->next; while ( node != first ) { next = node->next; if ( selection( node, key ) ) FTC_MruList_Remove( list, node ); node = next; } } }