BASS_GetEAXParameters

Retrieves the current type of EAX environment and it's parameters.

BOOL WINAPI BASS_GetEAXParameters(
    DWORD *env,
    float *vol,
    float *decay
    float *damp
);

Parameters
envThe EAX environment... NULL = don't retrieve it. See BASS_SetEAXParameters for a list of the possible environments.
volThe volume of the reverb... NULL = don't retrieve it.
decayThe decay duration... NULL = don't retrieve it.
dampThe damping... NULL = don't retrieve it.

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

Error codes
BASS_ERROR_NOEAXThe current device does not support EAX.

See also
BASS_SetEAXParameters