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

MIXERCONTROL (Structures)
 
.
Summary
TODO - a short description

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.

Documentation

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.

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions