diff options
author | sr55 <[email protected]> | 2021-02-04 20:14:32 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-04 20:14:32 +0000 |
commit | 8ac490e3e147c84a01d7679c22ba817eba84880f (patch) | |
tree | 7500fa96a36b7522eba0c65eafa00a50098ed0ee /win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs | |
parent | e4d9f3313c700acf9d8522aa270d96e806304693 (diff) |
WinGui: HandBrake.Interop API change/cleanup. Making the structs internal to avoid them being exposed to API consumers. This affects hb_geometry*, hb_sutitle*, NativeConstants
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs b/win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs index 54063032a..0dcb6ae27 100644 --- a/win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs +++ b/win/CS/HandBrake.Interop/Interop/HbLib/hb_geometry.cs @@ -16,7 +16,7 @@ namespace HandBrake.Interop.Interop.HbLib /// The hb_geometry_s. /// </summary> [StructLayout(LayoutKind.Sequential)] - public struct hb_geometry_s + internal struct hb_geometry_s { /// <summary> /// The width. @@ -38,7 +38,7 @@ namespace HandBrake.Interop.Interop.HbLib /// The hb_ui_geometry_s. /// </summary> [StructLayout(LayoutKind.Sequential)] - public struct hb_geometry_settings_s + internal struct hb_geometry_settings_s { /// <summary> /// Anamorphic mode, see job struct anamorphic @@ -86,7 +86,7 @@ namespace HandBrake.Interop.Interop.HbLib /// The hb_rational_t. /// </summary> [StructLayout(LayoutKind.Sequential)] - public struct hb_rational_t + internal struct hb_rational_t { /// <summary> /// The num. W |