BASS_GetVersion

Retrieves the version number of the BASS.DLL that is loaded.

DWORD WINAPI BASS_GetVersion();

Return value
The BASS version (LOWORD.HIWORD)

Remarks
There is no guarantee that a previous or future version of BASS supports all the BASS functions that you are using, so you should always call this function to make sure the correct version is loaded.

Example
To check that BASS 0.7 is loaded.

if (BASS_GetVersion()!=MAKELONG(0,7)) {
    // version 0.7 not loaded!
}