waveInGetDevCaps (coredll)
Last changed: -73.6.67.244

.
Summary
TODO - a short description

C# Signature:

[DllImport("winmm.dll", SetLastError = true, CharSet = CharSet.Auto)]

public static extern uint waveInGetDevCaps(uint uDeviceID, ref WAVEINCAPS pwic, uint cbwic);

VB Signature:

Declare Auto Function waveInGetDevCaps Lib "winmm.dll" (ByVal uDeviceID as Integer, ByRef lpCaps As WAVEINCAPS, _

ByVal uSize As Integer) As Integer

Structures Used:

C# 2005 version of structure

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]

public struct WAVEINCAPS

{

    public ushort wMid;
    public ushort wPid;
    public uint vDriverVersion;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)]
    public string szPname;
    public uint dwFormats;
    public ushort wChannels;
    public ushort wReserved1;

}

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Taken from openNetCF in OpenNETCF.Win32.Wave

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation