branches/gmyth-0.1b/src/gmyth_remote_util.h
branchtrunk
changeset 349 7005e696052c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/branches/gmyth-0.1b/src/gmyth_remote_util.h	Sat Feb 10 20:01:54 2007 +0000
     1.3 @@ -0,0 +1,41 @@
     1.4 +/**
     1.5 + * GMyth Library
     1.6 + *
     1.7 + * @file gmyth/gmyth_remote_util.h
     1.8 + * 
     1.9 + * @brief <p> This component provides utility functions for accessing remote data.
    1.10 + *
    1.11 + * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
    1.12 + * @author Hallyson Luiz de Morais Melo <hallyson.melo@indt.org.br>
    1.13 + *
    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 __REMOTE_UTIL_H__
    1.32 +#define __REMOTE_UTIL_H__
    1.33 +
    1.34 +#include <glib.h>
    1.35 +#include "gmyth_recorder.h"
    1.36 +#include "gmyth_socket.h"
    1.37 +
    1.38 +G_BEGIN_DECLS
    1.39 +
    1.40 +GMythRecorder* remote_request_next_free_recorder (GMythSocket *socket, int curr);
    1.41 +
    1.42 +G_END_DECLS
    1.43 +
    1.44 +#endif