blob: 05a42b9235407d6f796a047d2b957fdce95d7c35 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// <auto-generated />
using System.Runtime.InteropServices;
namespace HandBrake.Interop
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct hb_chapter_s
{
/// int
public int index;
/// int
public int pgcn;
/// int
public int pgn;
/// int
public int cell_start;
/// int
public int cell_end;
/// int
public ulong block_start;
/// int
public ulong block_end;
/// int
public ulong block_count;
/// int
public int hours;
/// int
public int minutes;
/// int
public int seconds;
/// uint64_t->unsigned int
public ulong duration;
/// char[1024]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
public string title;
}
}
|