The filetype to be used with e.g. BASS_StreamCreateFile(BASSFiletype, IntPtr, Int64, Int64, BASSFlag), BASS_MusicLoad(BASSFiletype, IntPtr, Int64, Int64, BASSFlag, Int32) or BASS_SampleLoad(BASSFiletype, IntPtr, Int64, Int64, Int32, BASSFlag).
Namespace: Un4seen.Bass
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.18.2
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| BASS_FILE_NAME | 0 | A filename. | |
| BASS_FILE_MEM | 1 | Points to a memory block. | |
| BASS_FILE_MEMCOPY | 3 | Points to a memory block, which will be copied (and can then be freed immediately after the call). | |
| BASS_FILE_HANDLE | 4 | A seekable file handle (HANDLE) on Windows or a file descriptor (int) on other platforms (will be duplicated). |
See Also