view Gui/timer.h @ 2798:ee2cd36a81a2

Code cleanup - emms is not required when MMX block is commented out. Special notes for Michael Niedermayer: Are you still here? If you don't like for(cond;cond;cond) C-constructions and prefer asm ones: "jb 1b" then use .align 16 pseudo assembler instructions else loops rather will be not aligned on correct boundary. (16 it's for K7 for pent should be 8). Your parts have a lot such lacks.
author nick
date Sat, 10 Nov 2001 18:40:49 +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