blob: f67b711f4a9e92d3cc90acbe23f62e5def6dad7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* File: iowatch.cc
*
* Copyright (C) 2005-2007 Jorge Arellano Cid <jcid@dillo.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*/
// Simple ADT for watching file descriptor activity
#include <fltk/run.h>
#include "iowatch.hh"
using namespace fltk;
//
// Hook a Callback for a certain activities in a FD
//
void a_IOwatch_add_fd(int fd, int when, FileHandler Callback, void *usr_data=0)
{
if (fd >= 0)
add_fd(fd, when, Callback, usr_data);
}
//
// Remove a Callback for a given FD (or just remove some events)
//
void a_IOwatch_remove_fd(int fd, int when)
{
if (fd >= 0)
remove_fd(fd, when);
}
|