view Gui/timer.h @ 3506:3d906972dafd

--with-x11{inc,lib}dir configure option broken, can't select a specific X11 include/lib directory for mplayer compilation solaris has pthread stub routines in libc, try to verify that the _ld_pthread option used really produces a working threaded binary.
author jkeil
date Sat, 15 Dec 2001 18:35:06 +0000
parents f91ad6d23ce9
children
line wrap: on
line source


#ifndef __MYTIMER
#define __MYTIMER

typedef void (* timerTSigHandler)( int signum );
extern timerTSigHandler timerSigHandler;

extern void timerSetHandler( timerTSigHandler handler );
extern void timerInit( void );
extern void timerDone( void );

#endif