glib.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 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. * Modified by the GLib Team and others 1997-2000. See the AUTHORS
  19. * file for a list of people on the GLib Team. See the ChangeLog
  20. * files for a list of changes. These files are distributed with
  21. * GLib at ftp://ftp.gtk.org/pub/gtk/.
  22. */
  23. #ifndef __G_LIB_H__
  24. #define __G_LIB_H__
  25. #define __GLIB_H_INSIDE__
  26. #include <glib/galloca.h>
  27. #include <glib/garray.h>
  28. #include <glib/gasyncqueue.h>
  29. #include <glib/gatomic.h>
  30. #include <glib/gbacktrace.h>
  31. #include <glib/gbase64.h>
  32. #include <glib/gbitlock.h>
  33. #include <glib/gbookmarkfile.h>
  34. #include <glib/gbytes.h>
  35. #include <glib/gcharset.h>
  36. #include <glib/gchecksum.h>
  37. #include <glib/gconvert.h>
  38. #include <glib/gdataset.h>
  39. #include <glib/gdate.h>
  40. #include <glib/gdatetime.h>
  41. #include <glib/gdir.h>
  42. #include <glib/genviron.h>
  43. #include <glib/gerror.h>
  44. #include <glib/gfileutils.h>
  45. #include <glib/ggettext.h>
  46. #include <glib/ghash.h>
  47. #include <glib/ghmac.h>
  48. #include <glib/ghook.h>
  49. #include <glib/ghostutils.h>
  50. #include <glib/giochannel.h>
  51. #include <glib/gkeyfile.h>
  52. #include <glib/glist.h>
  53. #include <glib/gmacros.h>
  54. #include <glib/gmain.h>
  55. #include <glib/gmappedfile.h>
  56. #include <glib/gmarkup.h>
  57. #include <glib/gmem.h>
  58. #include <glib/gmessages.h>
  59. #include <glib/gnode.h>
  60. #include <glib/goption.h>
  61. #include <glib/gpattern.h>
  62. #include <glib/gpoll.h>
  63. #include <glib/gprimes.h>
  64. #include <glib/gqsort.h>
  65. #include <glib/gquark.h>
  66. #include <glib/gqueue.h>
  67. #include <glib/grand.h>
  68. #include <glib/gregex.h>
  69. #include <glib/gscanner.h>
  70. #include <glib/gsequence.h>
  71. #include <glib/gshell.h>
  72. #include <glib/gslice.h>
  73. #include <glib/gslist.h>
  74. #include <glib/gspawn.h>
  75. #include <glib/gstrfuncs.h>
  76. #include <glib/gstring.h>
  77. #include <glib/gstringchunk.h>
  78. #include <glib/gtestutils.h>
  79. #include <glib/gthread.h>
  80. #include <glib/gthreadpool.h>
  81. #include <glib/gtimer.h>
  82. #include <glib/gtimezone.h>
  83. #include <glib/gtrashstack.h>
  84. #include <glib/gtree.h>
  85. #include <glib/gtypes.h>
  86. #include <glib/gunicode.h>
  87. #include <glib/gurifuncs.h>
  88. #include <glib/gutils.h>
  89. #include <glib/gvarianttype.h>
  90. #include <glib/gvariant.h>
  91. #include <glib/gversion.h>
  92. #include <glib/gversionmacros.h>
  93. #ifdef G_PLATFORM_WIN32
  94. #include <glib/gwin32.h>
  95. #endif
  96. #ifndef G_DISABLE_DEPRECATED
  97. #include <glib/deprecated/gallocator.h>
  98. #include <glib/deprecated/gcache.h>
  99. #include <glib/deprecated/gcompletion.h>
  100. #include <glib/deprecated/gmain.h>
  101. #include <glib/deprecated/grel.h>
  102. #include <glib/deprecated/gthread.h>
  103. #endif /* G_DISABLE_DEPRECATED */
  104. #undef __GLIB_H_INSIDE__
  105. #endif /* __G_LIB_H__ */