2008-04-16 05:23:03 +00:00
|
|
|
|
/*
|
|
|
|
|
* tvheadend, AJAX user interface
|
|
|
|
|
* Copyright (C) 2007 Andreas <EFBFBD>man
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <htmlui://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef AJAXUI_MAILBOX_H_
|
|
|
|
|
#define AJAXUI_MAILBOX_H_
|
|
|
|
|
|
2008-04-17 15:03:50 +00:00
|
|
|
|
#include "tcp.h"
|
|
|
|
|
|
2008-04-16 05:23:03 +00:00
|
|
|
|
void ajax_mailbox_tdmi_state_change(th_dvb_mux_instance_t *tdmi);
|
|
|
|
|
|
2008-04-22 20:46:08 +00:00
|
|
|
|
void ajax_mailbox_tdmi_qual_change(th_dvb_mux_instance_t *tdmi);
|
|
|
|
|
|
2008-04-16 05:23:03 +00:00
|
|
|
|
void ajax_mailbox_tdmi_name_change(th_dvb_mux_instance_t *tdmi);
|
|
|
|
|
|
|
|
|
|
void ajax_mailbox_tdmi_status_change(th_dvb_mux_instance_t *tdmi);
|
|
|
|
|
|
2008-04-17 15:03:50 +00:00
|
|
|
|
void ajax_mailbox_tdmi_services_change(th_dvb_mux_instance_t *tdmi);
|
|
|
|
|
|
2008-04-16 16:19:34 +00:00
|
|
|
|
void ajax_mailbox_tda_change(th_dvb_adapter_t *tda);
|
|
|
|
|
|
2008-04-19 12:08:48 +00:00
|
|
|
|
void ajax_mailbox_start(tcp_queue_t *tq);
|
2008-04-17 15:03:50 +00:00
|
|
|
|
|
2008-04-19 10:51:45 +00:00
|
|
|
|
struct xmltv_grabber;
|
|
|
|
|
|
2008-04-27 13:31:41 +00:00
|
|
|
|
void ajax_mailbox_xmltv_grabber_status_change(struct xmltv_grabber *xg);
|
2008-04-19 10:51:45 +00:00
|
|
|
|
|
2008-05-04 18:32:46 +00:00
|
|
|
|
struct th_transport;
|
|
|
|
|
void ajax_mailbox_transport_status_change(struct th_transport *t);
|
|
|
|
|
|
2008-04-16 05:23:03 +00:00
|
|
|
|
#endif /* AJAXUI_MAILBOX_H_ */
|