X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FLibCecSharp%2FCecSharpTypes.h;h=43aaff935ca0b75e8bfe0b8cc78523820cdf3831;hb=d3b96c620e8bf4235d0ccee29d5b8e76dcdd86b6;hp=14630197f51a561227d005175519552b23ea502f;hpb=e7602087a36a85313b834bfe40d6b0255a9ea1b4;p=deb_libcec.git diff --git a/src/LibCecSharp/CecSharpTypes.h b/src/LibCecSharp/CecSharpTypes.h index 1463019..43aaff9 100644 --- a/src/LibCecSharp/CecSharpTypes.h +++ b/src/LibCecSharp/CecSharpTypes.h @@ -355,7 +355,8 @@ namespace CecSharp Version1_5_3 = 0x1503, Version1_6_0 = 0x1600, Version1_6_1 = 0x1601, - Version1_6_2 = 0x1602 + Version1_6_2 = 0x1602, + Version1_6_3 = 0x1603 }; public enum class CecServerVersion @@ -367,7 +368,8 @@ namespace CecSharp Version1_5_3 = 0x1503, Version1_6_0 = 0x1600, Version1_6_1 = 0x1601, - Version1_6_2 = 0x1602 + Version1_6_2 = 0x1602, + Version1_6_3 = 0x1603 }; public ref class CecAdapter @@ -649,6 +651,9 @@ namespace CecSharp if (ServerVersion >= CecServerVersion::Version1_6_2) DeviceLanguage = gcnew System::String(config.strDeviceLanguage); + + if (ServerVersion >= CecServerVersion::Version1_6_3) + MonitorOnlyClient = config.bMonitorOnly == 1; } property System::String ^ DeviceName; @@ -674,6 +679,7 @@ namespace CecSharp property uint16_t FirmwareVersion; property bool PowerOffDevicesOnStandby; property bool ShutdownOnStandby; + property bool MonitorOnlyClient; property System::String ^ DeviceLanguage; property CecCallbackMethods ^ Callbacks; };