summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs
new file mode 100644
index 000000000..67fd8d177
--- /dev/null
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace HandBrake.Interop
+{
+ public static class MarshalingConstants
+ {
+#if X64
+ public const int JobPaddingBytes = 24696;
+ public const int AudioPaddingBytes = 24640;
+#else
+ public const int JobPaddingBytes = 24644;
+ public const int AudioPaddingBytes = 24608;
+#endif
+ }
+}