/* sockwatch.h
 *
 * Generic interface functions for Dickon's socket watcher module
 *
 * (C) Joseph Heenan, 1998.
 * All rights reserved.
 *
 * $Id: sockwatch,v 1.2 2000/03/19 12:09:55 joseph Exp $
 *
 */

#ifndef SOCKWATCH_H
#define SOCKWATCH_H

extern int *socketwatch_pollword;

extern void socketwatch_register( int /*socket*/ );
extern void socketwatch_deregister( int /*socket*/ );

extern void socketwatch_init( void );
extern void socketwatch_finalise( void );

#endif /* SOCKWATCH_H */
