C# code:
[DllImport("winmm.dll", SetLastError=true, CallingConvention=CallingConvention.Winapi)] public static extern int waveOutSetVolume(int uDeviceID, int dwVolume); //Call waveOutSetVolume( 0, 100 );
第一个参数可以为0,表示首选设备
第二个参数为音量:0xFFFF为最大,0x0000为最小,其中高位(前两位)表示右声道音量,低位(后两位)表示左声道音量
int iVolume=50;//音量大小(0-100)
int left =Convert .ToInt32 ( Convert.ToInt32(iVolume));
int right = left;
int volume = (left << 8) | right ;
waveOutSetVolume(0,volume );