Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
MIXERCONTROL (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Auto)]
struct MIXERCONTROL
{
[FieldOffset(0)] public UInt32 cbStruct;
[FieldOffset(4)] public UInt32 dwControlID;
[FieldOffset(8)] public UInt32 dwControlType;
[FieldOffset(12)] public UInt32 fdwControl;
[FieldOffset(16)] public UInt32 cMultipleItems;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = MIXER_SHORT_NAME_CHARS)]
[FieldOffset(20)] public string szShortName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = MIXER_LONG_NAME_CHARS)]
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS)]
public string szName;
// Union "Bounds" start
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS)]
public UnionBoundsSigned ubs;
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS)]
public UnionBoundsUnsigned ubus; //insatnce of UnionBoundsSigned struct
/* [MarshalAs(UnmanagedType.ByValArray, SizeConst=6)]
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS)]
public UInt32[] dwReserved1;*/
// Union "Bounds" end
// Union "Metrics" start
// additonal 6 DWORDs
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS + 24)]
public UInt32 cSteps;
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS + 24)]
public UInt32 cbCustomData;
/* [MarshalAs(UnmanagedType.ByValArray, SizeConst=6)]
[FieldOffset(20 + MIXER_SHORT_NAME_CHARS + MIXER_LONG_NAME_CHARS + 24)]
public UInt32[] dwReserved2;*/
// Union "Metrics" end
}
VB Definition:
Structure MIXERCONTROL
Public TODO
End Structure
User-Defined Field Types:
None.
Notes:
None.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.