BASS.NET API for the Un4seen BASS Audio Library

FILECLOSEPROC Delegate

BASS.NET API for the Un4seen BASS Audio Library
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
Syntax

public delegate void FILECLOSEPROC(
	IntPtr user
)

Parameters

user
Type: SystemIntPtr
The user instance data given when BASS_StreamCreateFileUser(BASSStreamSystem, BASSFlag, BASS_FILEPROCS, IntPtr) was called.
Remarks

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.
Examples

See BASS_FILEPROCS.
See Also

Reference