sl@0: /* GObject - GLib Type, Object, Parameter and Signal Library sl@0: * Copyright (C) 2001 Red Hat, Inc. sl@0: * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved. sl@0: * sl@0: * This library is free software; you can redistribute it and/or sl@0: * modify it under the terms of the GNU Lesser General Public sl@0: * License as published by the Free Software Foundation; either sl@0: * version 2 of the License, or (at your option) any later version. sl@0: * sl@0: * This library is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU sl@0: * Lesser General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU Lesser General sl@0: * Public License along with this library; if not, write to the sl@0: * Free Software Foundation, Inc., 59 Temple Place, Suite 330, sl@0: * Boston, MA 02111-1307, USA. sl@0: */ sl@0: #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) sl@0: #error "Only can be included directly." sl@0: #endif sl@0: sl@0: #ifndef __G_SOURCECLOSURE_H__ sl@0: #define __G_SOURCECLOSURE_H__ sl@0: sl@0: #include sl@0: sl@0: G_BEGIN_DECLS sl@0: IMPORT_C void g_source_set_closure (GSource *source, sl@0: GClosure *closure); sl@0: sl@0: IMPORT_C GType g_io_channel_get_type (void); sl@0: IMPORT_C GType g_io_condition_get_type (void); sl@0: sl@0: /** sl@0: * G_TYPE_IO_CHANNEL: sl@0: * sl@0: * The #GType for #GIOChannel. sl@0: */ sl@0: #define G_TYPE_IO_CHANNEL (g_io_channel_get_type ()) sl@0: /** sl@0: * G_TYPE_IO_CONDITION: sl@0: * sl@0: * The #GType for #GIOCondition. sl@0: */ sl@0: #define G_TYPE_IO_CONDITION (g_io_condition_get_type ()) sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* __G_SOURCECLOSURE_H__ */