/* -*- Mode: C; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 3 -*- */ /* * marshal.c - custom marshals collection. * Copyright (C) 2001-2002 Takuro Ashie * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 3S30, Boston, MA 02111-1307, USA. * * $Id: gimv_marshal.c,v 1.2 2003/06/13 09:43:31 makeinu Exp $ */ #include "gimv_marshal.h" #if (GTK_MAJOR_VERSION >= 2) #ifdef G_ENABLE_DEBUG #define g_marshal_value_peek_int(v) g_value_get_int (v) #else /* !G_ENABLE_DEBUG */ #define g_marshal_value_peek_int(v) (v)->data[0].v_int #endif /* !G_ENABLE_DEBUG */ void gtk_marshal_INT__INT_INT (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, gpointer invocation_hint, gpointer marshal_data) { typedef gint (*GMarshalFunc_INT__INT_INT) (gpointer data1, gint arg_1, gint arg_2, gpointer data2); register GMarshalFunc_INT__INT_INT callback; register GCClosure *cc = (GCClosure*) closure; register gpointer data1, data2; gint v_return; g_return_if_fail (return_value != NULL); g_return_if_fail (n_param_values == 3); if (G_CCLOSURE_SWAP_DATA (closure)) { data1 = closure->data; data2 = g_value_peek_pointer (param_values + 0); } else { data1 = g_value_peek_pointer (param_values + 0); data2 = closure->data; } callback = (GMarshalFunc_INT__INT_INT) (marshal_data ? marshal_data : cc->callback); v_return = callback (data1, g_marshal_value_peek_int (param_values + 1), g_marshal_value_peek_int (param_values + 2), data2); g_value_set_int (return_value, v_return); } #else /* (GTK_MAJOR_VERSION >= 2) */ typedef gint (*GtkSignal_INT__INT_INT) (GtkObject * object, gint arg1, gint arg2, gpointer user_data); void gtk_marshal_INT__INT_INT (GtkObject * object, GtkSignalFunc func, gpointer func_data, GtkArg * args) { GtkSignal_INT__INT_INT rfunc; gint *return_val; return_val = GTK_RETLOC_INT (args[2]); rfunc = (GtkSignal_INT__INT_INT) func; *return_val = (*rfunc) (object, GTK_VALUE_INT (args[0]), GTK_VALUE_INT (args[1]), func_data); } #endif /* (GTK_MAJOR_VERSION >= 2) */