grim/guifications3

converted guifications-daemon-web to cmake, this is behind a bit when it comes to api and needs to have the updates completed yet
/*
* Guifications - The end-all, be-all notification framework
* Copyright (C) 2003-2009 Gary Kramlich <grim@reaperworld.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GF_EGGDBUS_SERVER_CONNECTION_H
#define GF_EGGDBUS_SERVER_CONNECTION_H
#define GF_TYPE_EGGDBUS_SERVER_CONNECTION (gf_eggdbus_server_connection_get_type())
#define GF_EGGDBUS_SERVER_CONNECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GF_TYPE_EGGDBUS_SERVER_CONNECTION, GfEggDBusServerConnection))
#define GF_EGGDBUS_SERVER_CONNECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klas), GF_TYPE_EGGDBUS_SERVER_CONNECTION, GfEggDBusServerConnectionClass))
#define GF_IS_EGGDBUS_SERVER_CONNECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GF_TYPE_EGGDBUS_SERVER_CONNECTION))
#define GF_IS_EGGDBUS_SERVER_CONNECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((obj), GF_TYPE_EGGDBUS_SERVER_CONNECTION))
#define GF_EGGDBUS_SERVER_CONNECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GF_TYPE_EGGDBUS_SERVER_CONNECTION, GfEggDBusServerConnectionClass))
typedef struct _GfEggDBusServerConnection GfEggDBusServerConnection;
typedef struct _GfEggDBusServerConnectionClass GfEggDBusServerConnectionClass;
#include <glib.h>
#include <eggdbus/eggdbus.h>
#include <gflib/gf_lib.h>
struct _GfEggDBusServerConnection {
GfServerConnection parent;
void (*_gf_reserved1)(void);
void (*_gf_reserved2)(void);
void (*_gf_reserved3)(void);
void (*_gf_reserved4)(void);
};
struct _GfEggDBusServerConnectionClass {
GfServerConnectionClass parent;
void (*_gf_reserved1)(void);
void (*_gf_reserved2)(void);
void (*_gf_reserved3)(void);
void (*_gf_reserved4)(void);
};
G_BEGIN_DECLS
void gf_eggdbus_server_connection_register(GfNativePlugin *plugin);
GType gf_eggdbus_server_connection_get_type(void);
EggDBusConnection *gf_eggdbus_server_connection_get_connection(GfEggDBusServerConnection *conn);
G_END_DECLS
#endif /* GF_EGGDBUS_SERVER_CONNECTION_H */