tvheadend/htsp.h

37 lines
1.1 KiB
C
Raw Normal View History

2007-11-25 16:58:55 +00:00
/*
* tvheadend, HTSP 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 <http://www.gnu.org/licenses/>.
*/
#ifndef HTSP_H_
#define HTSP_H_
#include "epg.h"
2007-11-25 16:58:55 +00:00
void htsp_init(void);
2007-11-25 16:58:55 +00:00
void htsp_event_update(channel_t *ch, event_t *e);
2007-11-25 16:58:55 +00:00
void htsp_channel_add(channel_t *ch);
void htsp_channel_update(channel_t *ch);
void htsp_channel_delete(channel_t *ch);
2008-01-14 19:07:46 +00:00
void htsp_tag_add(channel_tag_t *ct);
void htsp_tag_update(channel_tag_t *ct);
void htsp_tag_delete(channel_tag_t *ct);
2008-01-14 19:07:46 +00:00
2007-11-25 16:58:55 +00:00
#endif /* HTSP_H_ */