1 | /* GLIB - Library of useful routines for C programming |
---|---|
2 | * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald |
3 | * |
4 | * This library is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Lesser General Public |
6 | * License as published by the Free Software Foundation; either |
7 | * version 2.1 of the License, or (at your option) any later version. |
8 | * |
9 | * This library is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Lesser General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU Lesser General Public |
15 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
16 | */ |
17 | |
18 | /* |
19 | * Modified by the GLib Team and others 1997-2000. See the AUTHORS |
20 | * file for a list of people on the GLib Team. See the ChangeLog |
21 | * files for a list of changes. These files are distributed with |
22 | * GLib at ftp://ftp.gtk.org/pub/gtk/. |
23 | */ |
24 | |
25 | #ifndef __G_LIB_H__ |
26 | #define __G_LIB_H__ |
27 | |
28 | #define __GLIB_H_INSIDE__ |
29 | |
30 | #include <glib/galloca.h> |
31 | #include <glib/garray.h> |
32 | #include <glib/gasyncqueue.h> |
33 | #include <glib/gatomic.h> |
34 | #include <glib/gbacktrace.h> |
35 | #include <glib/gbase64.h> |
36 | #include <glib/gbitlock.h> |
37 | #include <glib/gbookmarkfile.h> |
38 | #include <glib/gbytes.h> |
39 | #include <glib/gcharset.h> |
40 | #include <glib/gchecksum.h> |
41 | #include <glib/gconvert.h> |
42 | #include <glib/gdataset.h> |
43 | #include <glib/gdate.h> |
44 | #include <glib/gdatetime.h> |
45 | #include <glib/gdir.h> |
46 | #include <glib/genviron.h> |
47 | #include <glib/gerror.h> |
48 | #include <glib/gfileutils.h> |
49 | #include <glib/ggettext.h> |
50 | #include <glib/ghash.h> |
51 | #include <glib/ghmac.h> |
52 | #include <glib/ghook.h> |
53 | #include <glib/ghostutils.h> |
54 | #include <glib/giochannel.h> |
55 | #include <glib/gkeyfile.h> |
56 | #include <glib/glist.h> |
57 | #include <glib/gmacros.h> |
58 | #include <glib/gmain.h> |
59 | #include <glib/gmappedfile.h> |
60 | #include <glib/gmarkup.h> |
61 | #include <glib/gmem.h> |
62 | #include <glib/gmessages.h> |
63 | #include <glib/gnode.h> |
64 | #include <glib/goption.h> |
65 | #include <glib/gpattern.h> |
66 | #include <glib/gpoll.h> |
67 | #include <glib/gprimes.h> |
68 | #include <glib/gqsort.h> |
69 | #include <glib/gquark.h> |
70 | #include <glib/gqueue.h> |
71 | #include <glib/grand.h> |
72 | #include <glib/grcbox.h> |
73 | #include <glib/grefcount.h> |
74 | #include <glib/grefstring.h> |
75 | #include <glib/gregex.h> |
76 | #include <glib/gscanner.h> |
77 | #include <glib/gsequence.h> |
78 | #include <glib/gshell.h> |
79 | #include <glib/gslice.h> |
80 | #include <glib/gslist.h> |
81 | #include <glib/gspawn.h> |
82 | #include <glib/gstrfuncs.h> |
83 | #include <glib/gstring.h> |
84 | #include <glib/gstringchunk.h> |
85 | #include <glib/gtestutils.h> |
86 | #include <glib/gthread.h> |
87 | #include <glib/gthreadpool.h> |
88 | #include <glib/gtimer.h> |
89 | #include <glib/gtimezone.h> |
90 | #include <glib/gtrashstack.h> |
91 | #include <glib/gtree.h> |
92 | #include <glib/gtypes.h> |
93 | #include <glib/gunicode.h> |
94 | #include <glib/gurifuncs.h> |
95 | #include <glib/gutils.h> |
96 | #include <glib/guuid.h> |
97 | #include <glib/gvarianttype.h> |
98 | #include <glib/gvariant.h> |
99 | #include <glib/gversion.h> |
100 | #include <glib/gversionmacros.h> |
101 | #ifdef G_PLATFORM_WIN32 |
102 | #include <glib/gwin32.h> |
103 | #endif |
104 | |
105 | #ifndef G_DISABLE_DEPRECATED |
106 | #include <glib/deprecated/gallocator.h> |
107 | #include <glib/deprecated/gcache.h> |
108 | #include <glib/deprecated/gcompletion.h> |
109 | #include <glib/deprecated/gmain.h> |
110 | #include <glib/deprecated/grel.h> |
111 | #include <glib/deprecated/gthread.h> |
112 | #endif /* G_DISABLE_DEPRECATED */ |
113 | |
114 | #include <glib/glib-autocleanups.h> |
115 | |
116 | #undef __GLIB_H_INSIDE__ |
117 | |
118 | #endif /* __G_LIB_H__ */ |
119 |