Ejemplo n.º 1
0
 public static long GetPositionBytes(IntPtr hWaveOut, object lockObject)
 {
     lock (lockObject)
     {
         MmTime mmTime = new MmTime();
         mmTime.wType = 4U;
         MmException.Try(AudioInterop.waveOutGetPosition(hWaveOut, ref mmTime, Marshal.SizeOf((object)mmTime)), "waveOutGetPosition");
         if (mmTime.wType != 4U)
         {
             throw new Exception($"waveOutGetPosition: wType -> Expected {4}, Received {mmTime.wType}");
         }
         return(mmTime.cb);
     }
 }
Ejemplo n.º 2
0
 public static extern MmResult waveOutGetPosition(
     IntPtr hWaveOut,
     ref MmTime mmTime,
     int uSize);
Ejemplo n.º 3
0
 public static extern MmResult waveInGetPosition(
     IntPtr hWaveIn,
     out MmTime mmTime,
     int uSize);