Exemplo n.º 1
0
 /// <summary>
 /// Retrieves the current master volume level[If successful, the volume level is returned, else -1 is returned. Use BASS_ErrorGetCode to get the error code. ]
 /// </summary>
 /// <returns>If successful, the volume level is returned, else -1 is returned. Use BASS_ErrorGetCode to get the error code</returns>
 public static float BASS_GetVolume()
 {
     if (Environment.Is64BitProcess)
     {
         return(BassX64.BASS_GetVolume());
     }
     else
     {
         return(BassX86.BASS_GetVolume());
     }
 }