diff options
author | sr55 <[email protected]> | 2011-09-17 19:23:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-09-17 19:23:28 +0000 |
commit | ac48779d6481154c16419d3c758af39ddcba4d86 (patch) | |
tree | d332c630a64e0128e2442eeca2491cbc10cb7bcf /win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs | |
parent | d428990eccd41c5ea9e67115a093ea0c09bc3e2a (diff) |
Interop: Add in a bunch of missing comments.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4229 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 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs index 2818844de..66dc737fb 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs @@ -15,8 +15,15 @@ namespace HandBrake.Interop public const int JobPaddingBytes = 24688;
public const int AudioPaddingBytes = 24632;
#else
- public const int JobPaddingBytes = 24640;
- public const int AudioPaddingBytes = 24604;
+ /// <summary>
+ /// Job Padding Bytes
+ /// </summary>
+ public const int JobPaddingBytes = 24640;
+
+ /// <summary>
+ /// Audio Padding Bytes
+ /// </summary>
+ public const int AudioPaddingBytes = 24604;
#endif
}
}
|