this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at vchroot 16 lines 233 B view raw
1#include "io_iterator.h" 2 3int IOIteratorIsValid(io_iterator_t iter) 4{ 5 return iter != nullptr; 6} 7 8io_object_t IOIteratorNext(io_iterator_t iter) 9{ 10 return iter->next(); 11} 12 13void IOIteratorReset(io_iterator_t iter) 14{ 15 iter->reset(); 16}