2003-11-16 06:53:28 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpbase-private.c
|
|
|
|
* Copyright (C) 2003 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2003-11-16 06:53:28 +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-11-16 06:53:28 +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
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
2003-11-16 06:53:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2004-07-28 00:39:00 +08:00
|
|
|
#include <glib-object.h>
|
2003-11-16 06:53:28 +08:00
|
|
|
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
|
|
|
|
|
|
#include "gimpbasetypes.h"
|
|
|
|
|
|
|
|
#include "gimpbase-private.h"
|
|
|
|
|
|
|
|
|
2005-09-10 20:21:37 +08:00
|
|
|
GimpUnitVtable _gimp_unit_vtable = { NULL, };
|
2003-11-16 06:53:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2005-09-10 20:21:37 +08:00
|
|
|
gimp_base_init (GimpUnitVtable *vtable)
|
2003-11-16 06:53:28 +08:00
|
|
|
{
|
|
|
|
static gboolean gimp_base_initialized = FALSE;
|
|
|
|
|
|
|
|
g_return_if_fail (vtable != NULL);
|
|
|
|
|
|
|
|
if (gimp_base_initialized)
|
|
|
|
g_error ("gimp_base_init() must only be called once!");
|
|
|
|
|
|
|
|
_gimp_unit_vtable = *vtable;
|
|
|
|
|
|
|
|
gimp_base_initialized = TRUE;
|
|
|
|
}
|