Desktop Functions: Smart Device Functions:
|
Search Results for "waveOutWrite" in [All]coredll1: waveOutWrite
[DllImport ("coredll.dll", EntryPoint="waveOutWrite", SetLastError=true)]
public static extern int waveOutWrite(IntPtr hwo, byte[] pwh, int cbwh);
[DllImport ("coredll.dll", EntryPoint="waveOutWrite", SetLastError=true)]
public static extern int waveOutWrite(IntPtr hwo, IntPtr lpHdr, int cbwh);
Declare Function waveOutWrite Lib "coredll.dll" (TODO) As TODO winmmthe waveOutWrite() and waveOutUnPrepareHeader() functions. The latter is called This means that the WAVEHDR struct passed to the waveOutWrite() function must be allocated in unmanaged memory so it will survive after the call to waveOutWrite().
if ((MMRESULT = waveOutWrite(waveDevice, waveHdrPtr, Marshal.SizeOf(waveHdr))) != MMSYSERR_NOERROR) 3: waveOutWrite
|