| 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 |
|
|---|
| 12 | G_BEGIN_DECLS
|
|---|
| 13 |
|
|---|
| 14 | /*
|
|---|
| 15 | * A dead simple, raw source - with fast conditon change.
|
|---|
| 16 | */
|
|---|
| 17 | GSource *link_source_create_watch (GMainContext *context,
|
|---|
| 18 | int fd,
|
|---|
| 19 | GIOChannel *opt_channel,
|
|---|
| 20 | GIOCondition condition,
|
|---|
| 21 | GIOFunc func,
|
|---|
| 22 | gpointer user_data);
|
|---|
| 23 | void link_source_set_condition (GSource *source,
|
|---|
| 24 | GIOCondition condition);
|
|---|
| 25 |
|
|---|
| 26 | G_END_DECLS
|
|---|
| 27 |
|
|---|
| 28 | #endif /* _LINK_SOURCE_H_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.