2003-12-02 10:06:20 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* Thumbnail handling according to the Thumbnail Managing Standard.
|
2018-07-14 19:25:41 +08:00
|
|
|
* https://specifications.freedesktop.org/thumbnail-spec/
|
2003-12-02 10:06:20 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2001-2003 Sven Neumann <sven@gimp.org>
|
|
|
|
* Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2003-12-02 10:06:20 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-12-02 10:06:20 +08:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2003-12-02 10:06:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "gimpthumb-error.h"
|
|
|
|
|
|
|
|
|
2010-07-02 21:53:20 +08:00
|
|
|
/**
|
|
|
|
* SECTION: gimpthumb-error
|
|
|
|
* @title: GimpThumb-error
|
|
|
|
* @short_description: Error codes used by libgimpthumb
|
|
|
|
*
|
|
|
|
* Error codes used by libgimpthumb
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2003-12-14 21:21:44 +08:00
|
|
|
/**
|
|
|
|
* gimp_thumb_error_quark:
|
|
|
|
*
|
|
|
|
* This function is never called directly. Use GIMP_THUMB_ERROR() instead.
|
|
|
|
*
|
2019-08-03 06:10:14 +08:00
|
|
|
* Returns: the #GQuark that defines the GimpThumb error domain.
|
2003-12-14 21:21:44 +08:00
|
|
|
**/
|
2003-12-02 10:06:20 +08:00
|
|
|
GQuark
|
|
|
|
gimp_thumb_error_quark (void)
|
|
|
|
{
|
2006-04-06 20:07:18 +08:00
|
|
|
return g_quark_from_static_string ("gimp-thumb-error-quark");
|
2003-12-02 10:06:20 +08:00
|
|
|
}
|