Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ | |
2 /* vim:set et sts=4: */ | 1 /* vim:set et sts=4: */ |
3 /* ibus - The Input Bus | 2 /* ibus - The Input Bus |
4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> | 3 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> |
5 * Copyright (C) 2008-2010 Red Hat, Inc. | 4 * Copyright (C) 2008-2010 Red Hat, Inc. |
5 * Copyright (c) 2010 Google, Inc. | |
Yusuke Sato
2012/01/23 03:09:07
not sure but 2010-2012 or 2012, maybe?
Peng
2012/01/23 19:33:47
Done.
| |
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. |
11 * | 11 * |
12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Lesser General Public License for more details. | 15 * Lesser General Public License for more details. |
16 * | 16 * |
17 * You should have received a copy of the GNU Lesser General Public | 17 * You should have received a copy of the GNU Lesser General Public |
18 * License along with this library; if not, write to the | 18 * License along with this library; if not, write to the |
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
20 * Boston, MA 02111-1307, USA. | 20 * Boston, MA 02111-1307, USA. |
21 */ | 21 */ |
22 #ifndef __IBUS_H_ | 22 #ifndef __BUS_GLOBAL_H_ |
23 #define __IBUS_H_ | 23 #define __BUS_GLOBAL_H_ |
24 | 24 |
25 #define __IBUS_H_INSIDE__ | 25 #include <glib.h> |
26 | 26 |
27 #include <ibusversion.h> | 27 G_BEGIN_DECLS |
28 #include <ibusshare.h> | |
29 #include <ibusobject.h> | |
30 #include <ibusserializable.h> | |
31 #include <ibusattribute.h> | |
32 #include <ibusattrlist.h> | |
33 #include <ibustext.h> | |
34 #include <ibusproxy.h> | |
35 #include <ibusservice.h> | |
36 #include <ibusfactory.h> | |
37 #include <ibusengine.h> | |
38 #include <ibuserror.h> | |
39 #include <ibusproperty.h> | |
40 #include <ibusproplist.h> | |
41 #include <ibuslookuptable.h> | |
42 #include <ibusbus.h> | |
43 #include <ibuskeysyms.h> | |
44 #include <ibuskeymap.h> | |
45 #include <ibuskeys.h> | |
46 #include <ibusenumtypes.h> | |
47 #include <ibushotkey.h> | |
48 #include <ibusxml.h> | |
49 #include <ibusenginedesc.h> | |
50 #include <ibusobservedpath.h> | |
51 #include <ibuscomponent.h> | |
52 #include <ibusconfig.h> | |
53 #include <ibusconfigservice.h> | |
54 #include <ibuspanelservice.h> | |
55 #include <ibusutil.h> | |
56 | 28 |
57 #undef __IBUS_H_INSIDE__ | 29 extern gchar **g_argv; |
30 extern gchar *g_address; | |
31 extern gchar *g_cache; | |
32 extern gboolean g_mempro; | |
33 extern gboolean g_verbose; | |
34 extern gint g_gdbus_timeout; | |
35 #ifdef G_THREADS_ENABLED | |
36 extern gint g_monitor_timeout; | |
37 #endif | |
38 | |
39 G_END_DECLS | |
58 | 40 |
59 #endif | 41 #endif |
60 | 42 |
OLD | NEW |