4 * @file gmyth/gmyth_common.h
6 * @brief <p> This file contains basic common functions for the gmyth library.
8 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
9 * @author Leonardo Sobral Cunha <leonardo.cunha@indt.org.br>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU Lesser General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifndef GMYTH_COMMON_H_
29 #define GMYTH_COMMON_H_
34 #include "gmyth_programinfo.h"
39 * The GMythChannelInfo structure represents the channel information
40 * stored in the backend database.
43 /** The channel ID in backend database */
48 /** The channel name in backend database */
49 GString *channel_name;
53 void gmyth_free_channel_list(GList *list);
54 void gmyth_free_program_list(GList *list);
56 void gmyth_channel_info_print(GMythChannelInfo *channel_info);
57 void gmyth_program_info_print(GMythProgramInfo *program_info);
61 #endif /* GMYTH_COMMON_H_ */