Skip to content

Commit

Permalink
Add gconf/config.h
Browse files Browse the repository at this point in the history
  • Loading branch information
phuang committed Feb 5, 2009
1 parent aedad1e commit aaa9a8c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions gconf/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* 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

0 comments on commit aaa9a8c

Please sign in to comment.