User file stream read callback function.
DWORD CALLBACK FileReadProc( void *buffer, DWORD length, void *user );
buffer | Pointer to the buffer to put the data in. |
length | Maximum number of bytes to read. |
user | The user instance data given when BASS_StreamCreateFileUser was called. |
For an unbuffered file stream, this function should be as quick as possible during playback; any delays will not only affect the decoding of the current stream, but can also affect other streams and MOD musics that are playing. It is better to return less data (even none) rather than wait for more data. A buffered file stream is not affected by delays like this, as this function runs in its own thread then.