|
|
|
int FSOUND_SEEKCALLBACK(
unsigned int handle,
int pos,
signed char mode
);
| handle | This is the handle you returned from the open callback to use for your own file routines. |
| pos | This is the position or offset to seek by depending on the mode. |
| mode | This is the seek command. It uses and is compatible with SEEK_SET, SEEK_CUR and SEEK_END from stdio.h, so use them. |