3 * This file is part of the libCEC(R) library.
5 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
42 virtual bool Open(const char *strPort
, int iTimeoutMs
= 10000) = 0;
47 virtual bool Close(int iTimeoutMs
= 2000) = 0;
50 * @see cec_find_devices
52 virtual int FindDevices(std::vector
<cec_device
> &deviceList
, const char *strDevicePath
= NULL
) = 0;
57 virtual bool Ping(void) = 0;
60 * @see cec_start_bootloader
62 virtual bool StartBootloader(void) = 0;
65 * @depcrecated Use StandbyDevices() instead
67 virtual bool PowerOffDevices(cec_logical_address address
= CECDEVICE_BROADCAST
) = 0;
70 * @see cec_power_on_devices
72 virtual bool PowerOnDevices(cec_logical_address address
= CECDEVICE_BROADCAST
) = 0;
75 * @see cec_standby_devices
77 virtual bool StandbyDevices(cec_logical_address address
= CECDEVICE_BROADCAST
) = 0;
80 * @see cec_set_active_view
82 virtual bool SetActiveView(void) = 0;
85 * @see cec_set_inactive_view
87 virtual bool SetInactiveView(void) = 0;
90 * @see cec_get_next_log_message
92 virtual bool GetNextLogMessage(cec_log_message
*message
) = 0;
95 * @see cec_get_next_keypress
97 virtual bool GetNextKeypress(cec_keypress
*key
) = 0;
100 * @see cec_get_next_command
102 virtual bool GetNextCommand(cec_command
*command
) = 0;
107 virtual bool Transmit(const cec_frame
&data
, bool bWaitForAck
= true, int64_t iTimeout
= (int64_t) 5000) = 0;
110 * @see cec_set_logical_address
112 virtual bool SetLogicalAddress(cec_logical_address iLogicalAddress
) = 0;
115 * @deprecated use SetLogicalAddress() instead
117 virtual bool SetAckMask(uint16_t iMask
) = 0;
120 * @see cec_get_min_version
122 virtual int GetMinVersion(void) = 0;
125 * @see cec_get_lib_version
127 virtual int GetLibVersion(void) = 0;
131 extern DECLSPEC
void * CECCreate(const char *strDeviceName
, CEC::cec_logical_address iLogicalAddress
= CEC::CECDEVICE_PLAYBACKDEVICE1
, int iPhysicalAddress
= CEC_DEFAULT_PHYSICAL_ADDRESS
);
133 #if !defined(DLL_EXPORT)
134 #if defined(_WIN32) || defined(_WIN64)
138 static HINSTANCE g_libCEC
= NULL
;
139 static int g_iLibCECInstanceCount
= 0;
144 inline CEC::ICECDevice
*LoadLibCec(const char *strName
, CEC::cec_logical_address iLogicalAddress
= CEC::CECDEVICE_PLAYBACKDEVICE1
, int iPhysicalAddress
= CEC_DEFAULT_PHYSICAL_ADDRESS
)
146 typedef void* (__cdecl
*_CreateLibCec
)(const char *, uint8_t, uint8_t);
147 _CreateLibCec CreateLibCec
;
150 g_libCEC
= LoadLibrary("libcec.dll");
154 ++g_iLibCECInstanceCount
;
155 CreateLibCec
= (_CreateLibCec
) (GetProcAddress(g_libCEC
, "CECCreate"));
158 return static_cast< CEC::ICECDevice
* > (CreateLibCec(strName
, iLogicalAddress
, iPhysicalAddress
));
162 * @brief Unload the given libcec instance.
163 * @param device The instance to unload.
165 inline void UnloadLibCec(CEC::ICECDevice
*device
)
169 if (--g_iLibCECInstanceCount
== 0)
171 FreeLibrary(g_libCEC
);
181 inline CEC::ICECDevice
*LoadLibCec(const char *strName
, CEC::cec_logical_address iLogicalAddress
= CEC::CECDEVICE_PLAYBACKDEVICE1
, int iPhysicalAddress
= CEC_DEFAULT_PHYSICAL_ADDRESS
)
183 return (CEC::ICECDevice
*) CECCreate(strName
, iLogicalAddress
, iPhysicalAddress
);
187 * @brief Unload the given libcec instance.
188 * @param device The instance to unload.
190 inline void UnloadLibCec(CEC::ICECDevice
*device
)