diff options
author | sr55 <[email protected]> | 2014-02-21 22:06:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-02-21 22:06:24 +0000 |
commit | f2ca02b9220a88a018759932dd9608b2de8a91cf (patch) | |
tree | 0f3c3cd02a9f137f61f0359f6d96295c7109f728 /win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs | |
parent | 24dafeb39495eaf0081160bd642d8da10d0b9995 (diff) |
WinGui: Some tidy up and refactoring in the interop library. Few small internal namespace changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6053 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs deleted file mode 100644 index 05261251a..000000000 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs +++ /dev/null @@ -1,32 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="MarshalingConstants.cs" company="HandBrake Project (http://handbrake.fr)">
-// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
-// </copyright>
-// <summary>
-// Defines the MarshalingConstants type.
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
-
-namespace HandBrake.Interop
-{
- /// <summary>
- /// The marshaling constants.
- /// </summary>
- public static class MarshalingConstants
- {
-#if X64
- public const int JobPaddingBytes = 49264;
- public const int AudioPaddingBytes = 49208;
-#else
- /// <summary>
- /// Job Padding Bytes
- /// </summary>
- public const int JobPaddingBytes = 49216;
-
- /// <summary>
- /// Audio Padding Bytes
- /// </summary>
- public const int AudioPaddingBytes = 49180;
-#endif
- }
-}
|