@msdn=http://msdn.microsoft.com/en-us/library/dd757293(v=vs.85).aspx @pinvoke=http://pinvoke.net/$$$.htm 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: MIXERCONTROLDETAILS_BOOLEAN@msdn on MSDN
Edit Structures.MIXERC...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.