User file stream close callback function (to be used with
BASS_FILEPROCS).
Namespace:
Un4seen.Bass
Assembly:
Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
public delegate void FILECLOSEPROC(
IntPtr user
)
Public Delegate Sub FILECLOSEPROC (
user As IntPtr
)
Parameters
- user
- Type: SystemIntPtr
The user instance data given when BASS_StreamCreateFileUser(BASSStreamSystem, BASSFlag, BASS_FILEPROCS, IntPtr) was called.
With a buffered file stream, this function is called as soon as reading reaches the end of the file.
If the stream is freed before then, this function could be called while its
FILEREADPROC function is in progress.
If that happens, the
FILEREADPROC function call should be immediately cancelled.
See
BASS_FILEPROCS.
Reference