/* * PARSEC HEADER: sw_timer.h */ #ifndef _SW_TIMER_H_ #define _SW_TIMER_H_ // sw_timer.cpp implements the following functions // --------------------------------------------- // void SYSs_InitRefFrameCount(); // refframe_t SYSs_GetRefFrameCount(); // void SYSs_PauseRefFrameCount(); // void SYSs_ResumeRefFrameCount(); // void SYSs_Wait( refframe_t refframes ); // int SYSs_InitFrameTimer(); // int SYSs_KillFrameTimer(); // int SYSs_Yield(); // sw_timer.cpp implements the following variables // --------------------------------------------- // dword FrameRate; // dword FrameCounter; // dword RefTimeCount; // dword RefFrameCount; #endif // _SW_TIMER_H_