cec: added GetActiveDevices()/cec_get_active_devices(), IsActiveDevice()/cec_is_activ...
[deb_libcec.git] / include / cecc.h
index 0b0f2fecbc3cc5a6bcf5cbd2c6a2d305135bb461..c6446622c1598e506e0e8dcb721f1dc2ce224de3 100644 (file)
@@ -167,6 +167,24 @@ extern DECLSPEC int cec_poll_device(CEC::cec_logical_address iLogicalAddress);
 extern DECLSPEC int cec_poll_device(cec_logical_address iLogicalAddress);
 #endif
 
+#ifdef __cplusplus
+extern DECLSPEC CEC::cec_logical_addresses cec_get_active_devices(void);
+#else
+extern DECLSPEC cec_logical_addresses cec_get_active_devices(void);
+#endif
+
+#ifdef __cplusplus
+extern DECLSPEC int cec_is_active_device(CEC::cec_logical_address iAddress);
+#else
+extern DECLSPEC int cec_is_active_device(cec_logical_address iAddress);
+#endif
+
+#ifdef __cplusplus
+extern DECLSPEC int cec_is_active_device_type(CEC::cec_device_type type);
+#else
+extern DECLSPEC int cec_is_active_device_type(cec_device_type type);
+#endif
+
 #ifdef __cplusplus
 };
 #endif