renatofilho@870: /** renatofilho@870: * GMyth Library renatofilho@870: * renatofilho@870: * @file gmyth/gmyth_backend_info.c renatofilho@870: * renatofilho@870: * @brief

This component represents all the MythTV backend server renatofilho@870: * configuration information. renatofilho@870: * renatofilho@870: * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia. renatofilho@870: * @author Renato Filho renatofilho@870: * renatofilho@870: * renatofilho@870: * This program is free software; you can redistribute it and/or modify renatofilho@870: * it under the terms of the GNU Lesser General Public License as published by renatofilho@870: * the Free Software Foundation; either version 2 of the License, or renatofilho@870: * (at your option) any later version. renatofilho@870: * renatofilho@870: * This program is distributed in the hope that it will be useful, renatofilho@870: * but WITHOUT ANY WARRANTY; without even the implied warranty of renatofilho@870: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the renatofilho@870: * GNU General Public License for more details. renatofilho@870: * renatofilho@870: * You should have received a copy of the GNU Lesser General Public License renatofilho@870: * along with this program; if not, write to the Free Software renatofilho@870: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA renatofilho@870: */ renatofilho@870: renatofilho@870: renatofilho@870: #ifndef __GMYTH_DBUS_SERVER_H__ renatofilho@870: #define __GMYTH_DBUS_SERVER_H__ renatofilho@870: renatofilho@870: #include renatofilho@870: #include renatofilho@870: renatofilho@870: G_BEGIN_DECLS renatofilho@870: renatofilho@870: #define GMYTH_DBUS_SERVER_TYPE (gmyth_dbus_server_get_type ()) renatofilho@870: #define GMYTH_DBUS_SERVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_DBUS_SERVER_TYPE, GMythDbusServer)) renatofilho@870: #define GMYTH_DBUS_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_DBUS_SERVER_TYPE, GMythDbusServerClass)) renatofilho@870: #define IS_GMYTH_DBUS_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMYTH_DBUS_SERVER_TYPE)) renatofilho@870: #define IS_GMYTH_DBUS_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMYTH_DBUS_SERVER_TYPE)) renatofilho@870: #define GMYTH_DBUS_SERVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_DBUS_SERVER_TYPE, GMythDbusServerClass)) renatofilho@870: renatofilho@870: renatofilho@870: typedef struct _GMythDbusServer GMythDbusServer; renatofilho@870: typedef struct _GMythDbusServerClass GMythDbusServerClass; renatofilho@870: renatofilho@870: struct _GMythDbusServerClass renatofilho@870: { renatofilho@870: GObjectClass parent_class; renatofilho@870: }; renatofilho@870: renatofilho@870: struct _GMythDbusServer renatofilho@870: { renatofilho@870: GObject parent; renatofilho@870: }; renatofilho@870: renatofilho@870: GType gmyth_dbus_server_get_type (void); renatofilho@870: GMythDbusServer * gmyth_dbus_server_start_dbus_service (void); renatofilho@870: renatofilho@870: renatofilho@870: G_END_DECLS renatofilho@870: renatofilho@870: #endif