blob: 8a9d8ab6417be63ca63f423204da3bae8781fbda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="iso639_lang_t.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <auto-generated>Disable Stylecop Warnings for this file</auto-generated>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.HbLib
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
internal struct iso639_lang_t
{
public IntPtr eng_name;
public IntPtr native_name;
[MarshalAs(UnmanagedType.LPStr)]
public string iso639_1;
[MarshalAs(UnmanagedType.LPStr)]
public string iso639_2;
[MarshalAs(UnmanagedType.LPStr)]
public string iso639_2b;
}
}
|