source: trunk/ORBit2-2.14.0/linc2/include/linc/linc-source.h

Last change on this file was 92, checked in by cinc, 19 years ago

Orbit2 modified for use with NOM

File size: 635 bytes
Line 
1/*
2 * linc-source.h: This file is part of the linc library.
3 *
4 * Author:
5 * Michael Meeks (michael@ximian.com)
6 *
7 * Copyright 2002, Ximian, Inc.,
8 */
9#ifndef _LINK_SOURCE_H_
10#define _LINK_SOURCE_H_
11
12G_BEGIN_DECLS
13
14/*
15 * A dead simple, raw source - with fast conditon change.
16 */
17GSource *link_source_create_watch (GMainContext *context,
18 int fd,
19 GIOChannel *opt_channel,
20 GIOCondition condition,
21 GIOFunc func,
22 gpointer user_data);
23void link_source_set_condition (GSource *source,
24 GIOCondition condition);
25
26G_END_DECLS
27
28#endif /* _LINK_SOURCE_H_ */
Note: See TracBrowser for help on using the repository browser.