MIXERCONTROLDETAILS_BOOLEAN (Structures)
Last changed: anonymous

.
Summary
The MIXERCONTROLDETAILS_BOOLEAN structure retrieves and sets Boolean control properties for an audio mixer control.

C# Definition:

  [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode, Pack = 2)]
  public struct MIXERCONTROLDETAILS_BOOLEAN
  {
    private int fValue;

    public int Value
    {
      get { return fValue; }
      set { fValue = value; }
    }
  }

VB Definition:

  <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
  Structure MIXERCONTROLDETAILS_BOOLEAN
    Public fValue As Integer
  End Structure

User-Defined Field Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation