// -------------------------------------------------------------------------------------------------------------------- // // 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_container_s { [MarshalAs(UnmanagedType.LPStr)] public string name; [MarshalAs(UnmanagedType.LPStr)] public string short_name; [MarshalAs(UnmanagedType.LPStr)] public string long_name; [MarshalAs(UnmanagedType.LPStr)] public string default_extension; public int format; } }