BASS_MusicSetPanSep

Sets a MOD music's pan seperation level.

BOOL WINAPI BASS_MusicSetPanSep(
    HMUSIC handle,
    DWORD pan
);

Parameters
handleThe MOD music's handle.
panPan seperation... 0 (min) - 100 (max), 50 = linear (which is the default when a MOD music is loaded).

Return value
If succesful, then TRUE is returned, else FALSE is returned. Use BASS_ErrorGetCode to get the error code.

Error codes
BASS_ERROR_HANDLEhandle is not valid.

Remarks
By default BASS uses a linear panning "curve". If you want to use the panning of FT2, use a pan seperation setting of around 35. To use the Amiga panning (ie. full left and right) set it to 100.

See also
BASS_MusicSetAmplify