Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
518 B

  1. void Mixer_SetCallbackWindow(HWND hwndCallback);
  2. MMRESULT Mixer_ToggleMute(void);
  3. MMRESULT Mixer_SetVolume(int Increment);
  4. MMRESULT Mixer_ToggleBassBoost(void);
  5. MMRESULT Mixer_SetBass(int Increment);
  6. MMRESULT Mixer_SetTreble(int Increment);
  7. void Mixer_Shutdown();
  8. void Mixer_DeviceChange(WPARAM wParam, LPARAM lParam);
  9. void Mixer_ControlChange(WPARAM wParam, LPARAM lParam);
  10. void Mixer_MMDeviceChange(void);
  11. // default step size is 4% of max volume.
  12. #define MIXER_DEFAULT_STEP ((int)(65535/25))