gmyth/src/gmyth_common.h
branchtrunk
changeset 925 4a8d56080089
parent 924 c39c60fcfec8
child 926 84b9b65e511f
     1.1 --- a/gmyth/src/gmyth_common.h	Mon Feb 25 17:45:36 2008 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,62 +0,0 @@
     1.4 -/**
     1.5 - * GMyth Library
     1.6 - * 
     1.7 - * @file gmyth/gmyth_common.h
     1.8 - * 
     1.9 - * @brief <p> This file contains basic common functions for the gmyth library.
    1.10 - *
    1.11 - * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
    1.12 - * @author Leonardo Sobral Cunha <leonardo.cunha@indt.org.br>
    1.13 - * @author Rosfran Borges <rosfran.borges@indt.org.br>
    1.14 - *
    1.15 - * 
    1.16 - * This program is free software; you can redistribute it and/or modify
    1.17 - * it under the terms of the GNU Lesser General Public License as published by
    1.18 - * the Free Software Foundation; either version 2 of the License, or
    1.19 - * (at your option) any later version.
    1.20 - *
    1.21 - * This program is distributed in the hope that it will be useful,
    1.22 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.23 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.24 - * GNU General Public License for more details.
    1.25 - *
    1.26 - * You should have received a copy of the GNU Lesser General Public License
    1.27 - * along with this program; if not, write to the Free Software
    1.28 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.29 - */
    1.30 -
    1.31 -#ifndef GMYTH_COMMON_H_
    1.32 -#define GMYTH_COMMON_H_
    1.33 -
    1.34 -#include <glib.h>
    1.35 -#include <time.h>
    1.36 -
    1.37 -#include "gmyth_programinfo.h"
    1.38 -
    1.39 -G_BEGIN_DECLS
    1.40 -    /**
    1.41 -    * The GMythChannelInfo structure represents the channel information
    1.42 -    * stored in the backend database.
    1.43 -    */
    1.44 -    typedef struct {
    1.45 -    /** The channel ID in backend database */
    1.46 -    gint            channel_ID;
    1.47 -
    1.48 -    /** The channel number */
    1.49 -    GString        *channel_num;
    1.50 -
    1.51 -    /** The channel name in backend database */
    1.52 -    GString        *channel_name;
    1.53 -
    1.54 -    /** The channel icon path in the backend database */
    1.55 -    GString        *channel_icon;
    1.56 -} GMythChannelInfo;
    1.57 -
    1.58 -void            gmyth_free_channel_list     (GList *list);
    1.59 -void            gmyth_free_program_list     (GList *list);
    1.60 -void            gmyth_channel_info_free     (GMythChannelInfo *channel_info);
    1.61 -void            gmyth_channel_info_print    (GMythChannelInfo *channel_info);
    1.62 -void            gmyth_program_info_print    (GMythProgramInfo *program_info);
    1.63 -
    1.64 -G_END_DECLS
    1.65 -#endif                          /* GMYTH_COMMON_H_ */