예제 #1
0
 public bool MixChannels(bool Enable, uint LeftPercent, uint RightPercent)
 {
     if (Enable)
     {
         return(ZPlay.zplay_MixChannels(this.objptr, 1, LeftPercent, RightPercent) == 1);
     }
     return(ZPlay.zplay_MixChannels(this.objptr, 0, LeftPercent, RightPercent) == 1);
 }