C#에서 음악 재생을 위한 사운드 크기 조정 방법

526 단어 C#
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 );

좋은 웹페이지 즐겨찾기