windows-nt/Source/XPSP1/NT/shell/explorer/mixer.h

15 lines
504 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
void Mixer_SetCallbackWindow(HWND hwndCallback);
MMRESULT Mixer_ToggleMute(void);
MMRESULT Mixer_SetVolume(int Increment);
MMRESULT Mixer_ToggleBassBoost(void);
MMRESULT Mixer_SetBass(int Increment);
MMRESULT Mixer_SetTreble(int Increment);
void Mixer_Shutdown();
void Mixer_DeviceChange(WPARAM wParam, LPARAM lParam);
void Mixer_ControlChange(WPARAM wParam, LPARAM lParam);
void Mixer_MMDeviceChange(void);
// default step size is 4% of max volume.
#define MIXER_DEFAULT_STEP ((int)(65535/25))