mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 16:25:27 +00:00
a4bc03d66d
Fixes BNC#387220. * glib/glue/signal.c: New glue file to call g_signal_query(). * glib/glue/Makefile.am: Add signal.c. * glib/Signal.cs: check return type prior to emitting. svn path=/trunk/gtk-sharp/; revision=112360
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/* signal.c : Glue for signaling stuff
|
|
*
|
|
* Author: Andrés G. Aragoneses <aaragoneses@novell.com>
|
|
*
|
|
* Copyright (c) 2008 Novell Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the Lesser GNU General
|
|
* Public License as published by the Free Software Foundation.
|
|
*
|
|
* 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <glib-object.h>
|
|
|
|
/* Forward declarations */
|
|
GType glibsharp_signal_get_return_type (guint signal_id);
|
|
/* */
|
|
|
|
GType
|
|
glibsharp_signal_get_return_type (guint signal_id)
|
|
{
|
|
GSignalQuery query;
|
|
g_signal_query (signal_id, &query);
|
|
return query.return_type;
|
|
}
|