os/ossrv/glib/gobject/gsourceclosure.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GObject - GLib Type, Object, Parameter and Signal Library
sl@0
     2
 * Copyright (C) 2001 Red Hat, Inc.
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This library is free software; you can redistribute it and/or
sl@0
     6
 * modify it under the terms of the GNU Lesser General Public
sl@0
     7
 * License as published by the Free Software Foundation; either
sl@0
     8
 * version 2 of the License, or (at your option) any later version.
sl@0
     9
 *
sl@0
    10
 * This library is distributed in the hope that it will be useful,
sl@0
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    13
 * Lesser General Public License for more details.
sl@0
    14
 *
sl@0
    15
 * You should have received a copy of the GNU Lesser General
sl@0
    16
 * Public License along with this library; if not, write to the
sl@0
    17
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
sl@0
    18
 * Boston, MA 02111-1307, USA.
sl@0
    19
 */
sl@0
    20
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
sl@0
    21
#error "Only <glib-object.h> can be included directly."
sl@0
    22
#endif
sl@0
    23
sl@0
    24
#ifndef __G_SOURCECLOSURE_H__
sl@0
    25
#define __G_SOURCECLOSURE_H__
sl@0
    26
sl@0
    27
#include <gobject/gclosure.h>
sl@0
    28
sl@0
    29
G_BEGIN_DECLS
sl@0
    30
IMPORT_C void g_source_set_closure (GSource  *source,
sl@0
    31
			   GClosure *closure);
sl@0
    32
sl@0
    33
IMPORT_C GType g_io_channel_get_type   (void);
sl@0
    34
IMPORT_C GType g_io_condition_get_type (void);
sl@0
    35
sl@0
    36
/**
sl@0
    37
 * G_TYPE_IO_CHANNEL:
sl@0
    38
 * 
sl@0
    39
 * The #GType for #GIOChannel.
sl@0
    40
 */
sl@0
    41
#define G_TYPE_IO_CHANNEL (g_io_channel_get_type ())
sl@0
    42
/**
sl@0
    43
 * G_TYPE_IO_CONDITION:
sl@0
    44
 * 
sl@0
    45
 * The #GType for #GIOCondition.
sl@0
    46
 */
sl@0
    47
#define G_TYPE_IO_CONDITION (g_io_condition_get_type ())
sl@0
    48
sl@0
    49
G_END_DECLS
sl@0
    50
sl@0
    51
#endif /* __G_SOURCECLOSURE_H__ */