// -------------------------------------------------------------------------------------------------------------------- // // 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_rate_s { /// char* [MarshalAs(UnmanagedType.LPStr)] public string name; /// int public int rate; } }