ibus/gconf/config.h

29 строки
603 B
C
Исходник Обычный вид История

2009-02-05 05:48:58 +03:00
/* vim:set et sts=4: */
#ifndef __CONFIG_GCONF_H__
#define __CONFIG_GCONF_H__
#include <ibus.h>
#include <gconf/gconf-client.h>
#define IBUS_TYPE_CONFIG_GCONF \
(ibus_config_gconf_get_type ())
typedef struct _IBusConfigGConf IBusConfigGConf;
typedef struct _IBusConfigGConfClass IBusConfigGConfClass;
struct _IBusConfigGConf {
IBusConfigService parent;
GConfClient *client;
};
struct _IBusConfigGConfClass {
IBusConfigServiceClass parent;
};
GType ibus_config_gconf_get_type (void);
IBusConfigGConf *ibus_config_gconf_new (IBusConnection *connection);
#endif