Retrieves the version number of the BASS_FX.DLL that is loaded.
Namespace: Un4seen.Bass.AddOn.Fx
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.2
Syntax
Return Value
Type: Int32The BASS_FX version. For example, 0x02040103 (hex), would be version 2.4.1.3.
Remarks
You might use the global constant BASSFXVERSION to check the major revision.
Note: Calling this method will also automatically load the library into memory.
Examples
if ( Utils.HighWord(BassFx.BASS_FX_GetVersion()) != BassFx.BASSFXVERSION ) { MessageBox.Show(this, "Wrong BassFx Version!"); }
VB
If BassFx.BASS_FX_GetVersion() < Utils.MakeLong(&H103, &H204) Then MessageBox.Show(Me, "Wrong BassFx Version!") End If
if (BassFx.BASS_FX_GetVersion() < Utils.MakeLong(0x0103, 0x0204)) { MessageBox.Show(this, "Wrong BassFx Version!"); }
See Also