// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // Disable Stylecop Warnings for this file // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.HbLib { using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)] internal struct hb_mixdown_s { [MarshalAs(UnmanagedType.LPStr)] public string name; /// char* [MarshalAs(UnmanagedType.LPStr)] public string short_name; /// int public int amixdown; } }