diff options
author | sr55 <[email protected]> | 2010-06-04 18:36:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-04 18:36:11 +0000 |
commit | 73177393028b107b844b69e540b9aa29310e57ac (patch) | |
tree | 713ead7ebc1cec2e68330574bb54679486000790 /win/C#/interop/Model/Cropping.cs | |
parent | 6141bbf563d067e4c2574f85871f1da4e1b664f2 (diff) |
WinGui:
- HandBrakeInterop Project. This can be used to tie into libhb.dll with C#. Thanks to RandomEdgy for writing this.
- Made a few minor changes to this source to make most of the libhb stuff internal to the library only. Added a 2008 project file. (This won't compile yet)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3352 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/interop/Model/Cropping.cs')
-rw-r--r-- | win/C#/interop/Model/Cropping.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win/C#/interop/Model/Cropping.cs b/win/C#/interop/Model/Cropping.cs new file mode 100644 index 000000000..1ba0e8ee1 --- /dev/null +++ b/win/C#/interop/Model/Cropping.cs @@ -0,0 +1,15 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace HandBrake.Interop
+{
+ public class Cropping
+ {
+ public int Top { get; set; }
+ public int Bottom { get; set; }
+ public int Left { get; set; }
+ public int Right { get; set; }
+ }
+}
|