summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorrandomengy <[email protected]>2012-11-17 16:43:01 +0000
committerrandomengy <[email protected]>2012-11-17 16:43:01 +0000
commit45603634a4a50454a2fc15b9e0eed19469f58691 (patch)
tree229b4b860d00feadd04cb3387fc20b61fd4b5c5e /win
parent4c3e4aeb9a61a619952d200e4300390fb3907598 (diff)
Interop: Fix build break from bad merge.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5068 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/HbFunctions.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/HbFunctions.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/HbFunctions.cs
index 428a58304..e5d26e324 100644
--- a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/HbFunctions.cs
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/HbFunctions.cs
@@ -336,5 +336,8 @@ namespace HandBrake.Interop.HbLib
[DllImport("hb.dll", EntryPoint = "hb_x264_encopt_name", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr hb_x264_encopt_name(IntPtr name);
+
+ [DllImport("hb.dll", EntryPoint = "hb_check_h264_level", CallingConvention = CallingConvention.Cdecl)]
+ public static extern int hb_check_h264_level([In] [MarshalAs(UnmanagedType.LPStr)] string level, int width, int height, int fps_num, int fps_den, int interlaced, int fake_interlaced);
}
}