diff options
author | sr55 <[email protected]> | 2012-03-31 18:48:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-03-31 18:48:27 +0000 |
commit | 62f087933c51776ca60eb58262989acab2236fd0 (patch) | |
tree | 386c9a9d07cb7076b3c05fd312ec095b431f092e /win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs | |
parent | 837046df088587599534fe6450e9403fcb3dd67a (diff) |
Interop: Fixes / API Updates for Encoding.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4573 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs index 753b7edd2..81c80ab13 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/Misc.cs @@ -410,6 +410,25 @@ namespace HandBrake.Interop.HbLib public uint x;
}
+ [StructLayout(LayoutKind.Sequential)]
+ public struct hb_title_set_s
+ {
+ ///hb_list_t *
+ public hb_list_s list_title;
+
+ // int
+ public int feature;
+ }
+
+ [StructLayout(LayoutKind.Sequential)]
+ public struct hb_filter_object_s
+ {
+ public int id;
+ public int enforce_order;
+ public IntPtr name;
+ public IntPtr settings;
+ }
+
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void LoggingCallback(string message);
}
|