gimpconfigtypes.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* LIBGIMP - The GIMP Library
  2. * Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
  3. *
  4. * Config file serialization and deserialization interface
  5. * Copyright (C) 2001-2003 Sven Neumann <sven@gimp.org>
  6. *
  7. * This library is free software: you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library. If not, see
  19. * <https://www.gnu.org/licenses/>.
  20. */
  21. #ifndef __GIMP_CONFIG_TYPES_H__
  22. #define __GIMP_CONFIG_TYPES_H__
  23. #include <libgimpbase/gimpbasetypes.h>
  24. typedef struct _GimpConfig GimpConfig; /* dummy typedef */
  25. typedef struct _GimpConfigWriter GimpConfigWriter;
  26. typedef gchar * GimpConfigPath; /* to satisfy docs */
  27. typedef struct _GScanner GimpScanner;
  28. typedef struct _GimpColorConfig GimpColorConfig;
  29. #include <libgimpconfig/gimpconfigenums.h>
  30. #endif /* __GIMP_CONFIG_TYPES_H__ */