LEFT | RIGHT |
(Both sides are equal) |
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ | 1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
2 /* vim:set et sts=4: */ | 2 /* vim:set et sts=4: */ |
3 /* ibus - The Input Bus | 3 /* ibus - The Input Bus |
4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> | 4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> |
5 * Copyright (C) 2008-2010 Red Hat, Inc. | 5 * Copyright (C) 2008-2010 Red Hat, Inc. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Lesser General Public | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 27 matching lines...) Expand all Loading... |
38 #define IBUS_CONFIG_DCONF_GET_CLASS(obj) \ | 38 #define IBUS_CONFIG_DCONF_GET_CLASS(obj) \ |
39 (G_TYPE_INSTANCE_GET_CLASS ((obj), IBUS_TYPE_CONFIG_DCONF, IBusConfigDConfCl
ass)) | 39 (G_TYPE_INSTANCE_GET_CLASS ((obj), IBUS_TYPE_CONFIG_DCONF, IBusConfigDConfCl
ass)) |
40 | 40 |
41 typedef struct _IBusConfigDConf IBusConfigDConf; | 41 typedef struct _IBusConfigDConf IBusConfigDConf; |
42 typedef struct _IBusConfigDConfClass IBusConfigDConfClass; | 42 typedef struct _IBusConfigDConfClass IBusConfigDConfClass; |
43 | 43 |
44 GType ibus_config_dconf_get_type (void); | 44 GType ibus_config_dconf_get_type (void); |
45 IBusConfigDConf *ibus_config_dconf_new (GDBusConnection *connection); | 45 IBusConfigDConf *ibus_config_dconf_new (GDBusConnection *connection); |
46 | 46 |
47 #endif | 47 #endif |
LEFT | RIGHT |