Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "waveOutWrite" in [All]

winmm

.

the 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)

.

public static extern uint waveOutWrite(IntPtr hwo, ref WAVEHDR pwh, uint cbwh);

.

Declare Function waveOutWrite Lib "winmm.dll" (TODO) As TODO

.
Documentation
[waveOutWrite] on MSDN

coredll

.

[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

.
Documentation
[waveOutWrite] on MSDN

 
Access PInvoke.net directly from VS: