X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2FLibCEC.h;h=fa4e6321bf92b9d1b347af2b9d40da3bf8d7036b;hb=9884e9ffc5293de5bb9092db1ed581f213a678df;hp=0ef3e832d3d318218eda23c4beeccceefd40947e;hpb=cc938f166e50b0c9e4fdccf55e0a8cffb2c56602;p=deb_libcec.git diff --git a/src/lib/LibCEC.h b/src/lib/LibCEC.h index 0ef3e83..fa4e632 100644 --- a/src/lib/LibCEC.h +++ b/src/lib/LibCEC.h @@ -32,7 +32,7 @@ */ #include -#include "../../include/cec.h" +#include "cec.h" #include "platform/util/buffer.h" namespace CEC @@ -134,7 +134,7 @@ namespace CEC void AddLog(const cec_log_level level, const char *strFormat, ...); static void AddKey(void) {} //UNUSED static void AddKey(const cec_keypress &key); //UNUSED - static void AddCommand(const cec_command &command); //UNUSED + void AddCommand(const cec_command &command); static void ConfigurationChanged(const libcec_configuration &config); //UNUSED static void SetCurrentButton(cec_user_control_code iButtonCode); //UNUSED void CheckKeypressTimeout(void); @@ -146,6 +146,10 @@ namespace CEC CCECClient *RegisterClient(libcec_configuration &configuration); void UnregisterClients(void); std::vector GetClients(void) { return m_clients; }; + const char *GetLibInfo(void); + const char *ToString(const cec_user_control_code key); + void InitVideoStandalone(void); + const char *ToString(const cec_adapter_type type); CCECProcessor * m_cec;