mirror of https://github.com/GNOME/gimp.git
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpextension-error.c
|
|
* Copyright (C) 2018 Jehan <jehan@gimp.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "gimpextension-error.h"
|
|
|
|
|
|
/**
|
|
* gimp_extension_error_quark:
|
|
*
|
|
* This function is never called directly. Use GIMP_EXTENSION_ERROR() instead.
|
|
*
|
|
* Returns: the #GQuark that defines the GimpExtension error domain.
|
|
**/
|
|
GQuark
|
|
gimp_extension_error_quark (void)
|
|
{
|
|
return g_quark_from_static_string ("gimp-extension-error-quark");
|
|
}
|