branches/gmyth-0.1b/src/gmyth_common.h
author rosfran
Fri Feb 02 22:04:00 2007 +0000 (2007-02-02)
branchtrunk
changeset 322 eb6b0b1409b5
permissions -rw-r--r--
[svn r324] Added function to request how many recorders are available.
     1 /**
     2  * GMyth Library
     3  * 
     4  * @file gmyth/gmyth_common.h
     5  * 
     6  * @brief <p> This file contains basic common functions for the gmyth library.
     7  *
     8  * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
     9  * @author Leonardo Sobral Cunha <leonardo.cunha@indt.org.br>
    10  *
    11  *//*
    12  * 
    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.
    17  *
    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.
    22  *
    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
    26  */
    27 
    28 #ifndef GMYTH_COMMON_H_
    29 #define GMYTH_COMMON_H_
    30 
    31 #include <glib.h>
    32 #include <time.h>
    33 
    34 #include "gmyth_programinfo.h"
    35 
    36 G_BEGIN_DECLS
    37 
    38 /**
    39  * The GMythChannelInfo structure represents the channel information
    40  * stored in the backend database.
    41  */
    42 typedef struct {
    43 	/** The channel ID in backend database */
    44 	gint channel_ID;
    45 	
    46 	GString* channel_num; 
    47 	
    48 	/** The channel name in backend database */
    49 	GString *channel_name;
    50 
    51 } GMythChannelInfo;
    52 
    53 void gmyth_free_channel_list(GList *list);
    54 void gmyth_free_program_list(GList *list);
    55 
    56 void gmyth_channel_info_print(GMythChannelInfo *channel_info);
    57 void gmyth_program_info_print(GMythProgramInfo *program_info);
    58 
    59 G_END_DECLS
    60 
    61 #endif /* GMYTH_COMMON_H_ */