[DllImport ("coredll.dll", EntryPoint="waveInOpen", SetLastError=true)]
internal static extern int waveInOpen(out IntPtr t, uint id, WaveFormatEx pwfx, IntPtr dwCallback, int dwInstance, int fdwOpen);
Declare Function waveInOpen Lib "coredll.dll" (TODO) As TODO
public delegate void waveInProc(
IntPtr hwi, // Win32 type HWAVEIN
uint uMsg, // Win32 type UINT
uint dwInstance, // Win32 type DWORD
uint dwParam1, // Win32 type DWORD
uint dwParam2); // Win32 type DWORD
// values for waveInProc.uMsg
const uint WIM_OPEN = 0x3BE;
const uint WIM_CLOSE = 0x3BF;
const uint WIM_DATA = 0x3C0;
Do you know one? Please contribute it!
Taken from openNetCF in OpenNETCF.Win32.Wave
Please add some!
Please add some!