annotate 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 |
|
rev |
line source |
1693
|
1
|
|
2 #ifndef __MYTIMER
|
|
3 #define __MYTIMER
|
|
4
|
|
5 typedef void (* timerTSigHandler)( int signum );
|
|
6 extern timerTSigHandler timerSigHandler;
|
|
7
|
|
8 extern void timerSetHandler( timerTSigHandler handler );
|
|
9 extern void timerInit( void );
|
|
10 extern void timerDone( void );
|
|
11
|
2080
|
12 #endif
|