diff options
author | Scott <[email protected]> | 2015-09-26 21:29:34 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-09-26 21:30:33 +0100 |
commit | c19ea798a23bfea7aba509309bef9168ece09836 (patch) | |
tree | 72c318fc971208bfcb0149bd98efef6a63f85926 /win/CS/HandBrake.ApplicationServices/Interop/HbLib | |
parent | a6cf5c5fd4b4c23ad3998ff270162768ce9ae6e7 (diff) |
App Services Modelling Tidy Up
Making event objects immutable. Making Libhb constructs internal to the
library. We should expose this with a managed api if we need it outside
the library. (Part 1)
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/HbLib')
6 files changed, 6 insertions, 6 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_anamorphic_mode_t.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_anamorphic_mode_t.cs index 6940e73a8..ef0bf03f4 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_anamorphic_mode_t.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_anamorphic_mode_t.cs @@ -10,7 +10,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib
{
- public enum hb_anamorphic_mode_t
+ internal enum hb_anamorphic_mode_t
{
HB_ANAMORPHIC_NONE,
HB_ANAMORPHIC_STRICT,
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_container_s.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_container_s.cs index b9a8f3255..156bc7554 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_container_s.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_container_s.cs @@ -10,7 +10,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
- public struct hb_container_s
+ internal struct hb_container_s
{
[MarshalAs(UnmanagedType.LPStr)]
public string name;
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_encoder_s.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_encoder_s.cs index 9491cb160..6fddc1827 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_encoder_s.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_encoder_s.cs @@ -10,7 +10,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
- public struct hb_encoder_s
+ internal struct hb_encoder_s
{
[MarshalAs(UnmanagedType.LPStr)]
public string name;
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_mixdown_s.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_mixdown_s.cs index 768ec3189..726ebf226 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_mixdown_s.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_mixdown_s.cs @@ -10,7 +10,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
- public struct hb_mixdown_s
+ internal struct hb_mixdown_s
{
[MarshalAs(UnmanagedType.LPStr)]
public string name;
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_rate_s.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_rate_s.cs index bebeccb7f..5a4f48b4a 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_rate_s.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_rate_s.cs @@ -10,7 +10,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
- public struct hb_rate_s
+ internal struct hb_rate_s
{
/// char*
[MarshalAs(UnmanagedType.LPStr)]
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/iso639_lang_t.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/iso639_lang_t.cs index 1a4780ab2..86aa71dd8 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/iso639_lang_t.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/iso639_lang_t.cs @@ -11,7 +11,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
- public struct iso639_lang_t
+ internal struct iso639_lang_t
{
public IntPtr eng_name;
|