diff options
author | sr55 <[email protected]> | 2017-01-15 14:47:47 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-01-15 14:47:47 +0000 |
commit | 141e01f1336a8942da79a14391919320896f4d37 (patch) | |
tree | 4ad02b9bdcd268d85d2680829e0703902b58e2bb /win | |
parent | d90706da2eed392b6d5c26171bdde0e5425be9c0 (diff) |
WinGui: Fix typo in #496
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/HbLib/HbFunctions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/HbFunctions.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/HbFunctions.cs index cc3baa119..1adba8944 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/HbFunctions.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/HbFunctions.cs @@ -72,7 +72,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib public static extern void hb_dvd_set_dvdnav(int enable);
// void hb_opencl_set_enable(hb_handle_t* h, int enable_opencl);
- [DllImport("hb.dll", EntryPoint = "hb_dvd_set_dvdnav", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport("hb.dll", EntryPoint = "hb_opencl_set_enable", CallingConvention = CallingConvention.Cdecl)]
public static extern void hb_opencl_set_enable(IntPtr hbHandle, int enable);
/// Return Type: void
|