3 * This file is part of the libCEC(R) library.
5 * libCEC(R) is Copyright (C) 2011-2012 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/
34 #ifndef CECEXPORTS_C_H_
35 #define CECEXPORTS_C_H_
44 extern DECLSPEC
int cec_initialise(const CEC::libcec_configuration
*configuration
);
46 extern DECLSPEC
int cec_initialise(const libcec_configuration
*configuration
);
50 extern DECLSPEC
int cec_init_typed(const char *strDeviceName
, CEC::cec_device_type_list deviceTypes
);
52 extern DECLSPEC
int cec_init_typed(const char *strDeviceName
, cec_device_type_list deviceTypes
);
55 extern DECLSPEC
void cec_destroy(void);
57 extern DECLSPEC
int cec_open(const char *strPort
, uint32_t iTimeout
);
59 extern DECLSPEC
void cec_close(void);
62 extern DECLSPEC
int cec_enable_callbacks(void *cbParam
, CEC::ICECCallbacks
*callbacks
);
64 extern DECLSPEC
int cec_enable_callbacks(void *cbParam
, ICECCallbacks
*callbacks
);
68 extern DECLSPEC
int8_t cec_find_adapters(CEC::cec_adapter
*deviceList
, uint8_t iBufSize
, const char *strDevicePath
);
70 extern DECLSPEC
int8_t cec_find_adapters(cec_adapter
*deviceList
, uint8_t iBufSize
, const char *strDevicePath
);
73 extern DECLSPEC
int cec_ping_adapters(void);
75 extern DECLSPEC
int cec_start_bootloader(void);
77 extern DECLSPEC
int8_t cec_get_min_lib_version(void);
79 extern DECLSPEC
int8_t cec_get_lib_version_major(void);
81 extern DECLSPEC
int8_t cec_get_lib_version_minor(void);
84 extern DECLSPEC
int cec_power_on_devices(CEC::cec_logical_address address
);
86 extern DECLSPEC
int cec_power_on_devices(cec_logical_address address
);
90 extern DECLSPEC
int cec_standby_devices(CEC::cec_logical_address address
);
92 extern DECLSPEC
int cec_standby_devices(cec_logical_address address
);
95 extern DECLSPEC
int cec_set_active_view(void);
98 extern DECLSPEC
int cec_set_active_source(CEC::cec_device_type type
);
100 extern DECLSPEC
int cec_set_active_source(cec_device_type type
);
104 extern DECLSPEC
int cec_set_deck_control_mode(CEC::cec_deck_control_mode mode
, int bSendUpdate
);
106 extern DECLSPEC
int cec_set_deck_control_mode(cec_deck_control_mode mode
, int bSendUpdate
);
110 extern DECLSPEC
int cec_set_deck_info(CEC::cec_deck_info info
, int bSendUpdate
);
112 extern DECLSPEC
int cec_set_deck_info(cec_deck_info info
, int bSendUpdate
);
115 extern DECLSPEC
int cec_set_inactive_view(void);
118 extern DECLSPEC
int cec_set_menu_state(CEC::cec_menu_state state
, int bSendUpdate
);
120 extern DECLSPEC
int cec_set_menu_state(cec_menu_state state
, int bSendUpdate
);
124 extern DECLSPEC
int cec_get_next_log_message(CEC::cec_log_message
*message
);
126 extern DECLSPEC
int cec_get_next_log_message(cec_log_message
*message
);
130 extern DECLSPEC
int cec_get_next_keypress(CEC::cec_keypress
*key
);
132 extern DECLSPEC
int cec_get_next_keypress(cec_keypress
*key
);
136 extern DECLSPEC
int cec_get_next_command(CEC::cec_command
*command
);
138 extern DECLSPEC
int cec_get_next_command(cec_command
*command
);
142 extern DECLSPEC
int cec_transmit(const CEC::cec_command
*data
);
144 extern DECLSPEC
int cec_transmit(const cec_command
*data
);
148 extern DECLSPEC
int cec_set_logical_address(CEC::cec_logical_address iLogicalAddress
);
150 extern DECLSPEC
int cec_set_logical_address(cec_logical_address iLogicalAddress
);
153 extern DECLSPEC
int cec_set_physical_address(uint16_t iPhysicalAddress
);
156 extern DECLSPEC
int cec_set_osd_string(CEC::cec_logical_address iLogicalAddress
, CEC::cec_display_control duration
, const char *strMessage
);
158 extern DECLSPEC
int cec_set_osd_string(cec_logical_address iLogicalAddress
, cec_display_control duration
, const char *strMessage
);
161 extern DECLSPEC
int cec_switch_monitoring(int bEnable
);
164 extern DECLSPEC
CEC::cec_version
cec_get_device_cec_version(CEC::cec_logical_address iLogicalAddress
);
166 extern DECLSPEC cec_version
cec_get_device_cec_version(cec_logical_address iLogicalAddress
);
170 extern DECLSPEC
int cec_get_device_menu_language(CEC::cec_logical_address iLogicalAddress
, CEC::cec_menu_language
*language
);
172 extern DECLSPEC
int cec_get_device_menu_language(cec_logical_address iLogicalAddress
, cec_menu_language
*language
);
176 extern DECLSPEC
uint64_t cec_get_device_vendor_id(CEC::cec_logical_address iLogicalAddress
);
178 extern DECLSPEC
uint64_t cec_get_device_vendor_id(cec_logical_address iLogicalAddress
);
182 extern DECLSPEC
uint16_t cec_get_device_physical_address(CEC::cec_logical_address iLogicalAddress
);
184 extern DECLSPEC
uint16_t cec_get_device_physical_address(cec_logical_address iLogicalAddress
);
188 extern DECLSPEC
CEC::cec_logical_address
cec_get_active_source(void);
190 extern DECLSPEC cec_logical_address
cec_get_active_source(void);
194 extern DECLSPEC
int cec_is_active_source(CEC::cec_logical_address iAddress
);
196 extern DECLSPEC
int cec_is_active_source(cec_logical_address iAddress
);
200 extern DECLSPEC
CEC::cec_power_status
cec_get_device_power_status(CEC::cec_logical_address iLogicalAddress
);
202 extern DECLSPEC cec_power_status
cec_get_device_power_status(cec_logical_address iLogicalAddress
);
206 extern DECLSPEC
int cec_poll_device(CEC::cec_logical_address iLogicalAddress
);
208 extern DECLSPEC
int cec_poll_device(cec_logical_address iLogicalAddress
);
212 extern DECLSPEC
CEC::cec_logical_addresses
cec_get_active_devices(void);
214 extern DECLSPEC cec_logical_addresses
cec_get_active_devices(void);
218 extern DECLSPEC
int cec_is_active_device(CEC::cec_logical_address iAddress
);
220 extern DECLSPEC
int cec_is_active_device(cec_logical_address iAddress
);
224 extern DECLSPEC
int cec_is_active_device_type(CEC::cec_device_type type
);
226 extern DECLSPEC
int cec_is_active_device_type(cec_device_type type
);
230 extern DECLSPEC
int cec_set_hdmi_port(CEC::cec_logical_address iBaseDevice
, uint8_t iPort
);
232 extern DECLSPEC
int cec_set_hdmi_port(cec_logical_address iBaseDevice
, uint8_t iPort
);
235 extern DECLSPEC
int cec_volume_up(int bSendRelease
);
237 extern DECLSPEC
int cec_volume_down(int bSendRelease
);
239 extern DECLSPEC
int cec_mute_audio(int bSendRelease
);
242 extern DECLSPEC
int cec_send_keypress(CEC::cec_logical_address iDestination
, CEC::cec_user_control_code key
, int bWait
);
244 extern DECLSPEC
int cec_send_keypress(cec_logical_address iDestination
, cec_user_control_code key
, int bWait
);
248 extern DECLSPEC
int cec_send_key_release(CEC::cec_logical_address iDestination
, int bWait
);
250 extern DECLSPEC
int cec_send_key_release(cec_logical_address iDestination
, int bWait
);
254 extern DECLSPEC
CEC::cec_osd_name
cec_get_device_osd_name(CEC::cec_logical_address iAddress
);
256 extern DECLSPEC cec_osd_name
cec_get_device_osd_name(cec_logical_address iAddress
);
259 extern DECLSPEC
int cec_enable_physical_address_detection(void);
262 extern DECLSPEC
int cec_set_stream_path_logical(CEC::cec_logical_address iAddress
);
264 extern DECLSPEC
int cec_set_stream_path_logical(cec_logical_address iAddress
);
267 extern DECLSPEC
int cec_set_stream_path_physical(uint16_t iPhysicalAddress
);
270 extern DECLSPEC
CEC::cec_logical_addresses
cec_get_logical_addresses(void);
272 extern DECLSPEC cec_logical_addresses
cec_get_logical_addresses(void);
276 extern DECLSPEC
int cec_get_current_configuration(CEC::libcec_configuration
*configuration
);
278 extern DECLSPEC
int cec_get_current_configuration(libcec_configuration
*configuration
);
281 extern DECLSPEC
int cec_can_persist_configuration(void);
284 extern DECLSPEC
int persist_configuration(CEC::libcec_configuration
*configuration
);
286 extern DECLSPEC
int persist_configuration(libcec_configuration
*configuration
);
293 #endif /* CECEXPORTS_C_H_ */