gmio_core: add more doc for gmio_stream::rewind_func()

This commit is contained in:
Hugues Delorme 2015-03-30 17:50:27 +02:00
parent 5acf65d5f8
commit 82f6386256

View File

@ -92,7 +92,11 @@ struct gmio_stream
size_t (*size_func)(void* cookie); size_t (*size_func)(void* cookie);
/*! Pointer on a function that moves the position indicator within the /*! Pointer on a function that moves the position indicator within the
* stream to the beginning */ * stream to the beginning
*
* The function should behaves like C standard [rewind()]
* (http://pubs.opengroup.org/onlinepubs/007904975/functions/rewind.html)
*/
void (*rewind_func)(void* cookie); void (*rewind_func)(void* cookie);
}; };