X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/c3bd5478f8502b531d78cc65f1e102e136faa75b..248f4dd729b616814194bcca3bb9f2ab04f0ea0d:/glib/alien/gobject.c diff --git a/glib/alien/gobject.c b/glib/alien/gobject.c index c315abd..8ff4e9e 100644 --- a/glib/alien/gobject.c +++ b/glib/alien/gobject.c @@ -1,23 +1,30 @@ -/* $Id: gobject.c,v 1.2 2004-10-31 11:35:59 espen Exp $ */ +/* Common Lisp bindings for GTK+ v2.x + * Copyright 1999-2005 Espen S. Johnsen + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +/* $Id: gobject.c,v 1.4 2006-02-19 19:07:49 espen Exp $ */ #include -gpointer g_object_newvv (GType object_type, guint n_parameters, - guchar* names[], GValue* values[]) -{ - GParameter parameters[n_parameters]; - int i; - - for (i = 0; i < n_parameters; i++) { - parameters[i].name = names[i]; - g_value_init (¶meters[i].value, G_VALUE_TYPE (values[i])); - g_value_copy (values[i], ¶meters[i].value); - } - - return g_object_newv (object_type, n_parameters, ¶meters); -} - - guint size_of_gvalue () { return sizeof (GValue);