r295: Fixed underquoted AC_DEFUNs to reduce warnings from aclocal of automake 1.8.x.
[cinelerra_cv.git] / mplexhi / vector.h
blob8d9abac66da72b7650e87ed3dc80370646766354
2 typedef struct _Vector *Vector;
4 Vector NewVector( size_t recsize );
5 void *VectorAppend( Vector v, void *rec );
6 void VectorRewind( Vector v );
7 void *VectorNext( Vector v );
8 void *VectorLookAhead( Vector v, int lookahead );