blob: 1e738ad47965e062bc4913048be0a67af5511e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* PARSEC HEADER: sl_timer.h
*/
#ifndef _SL_TIMER_H_
#define _SL_TIMER_H_
// sl_timer.c 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();
// sl_timer.c implements the following variables
// ---------------------------------------------
// extern dword FrameRate;
// extern dword FrameCounter;
// extern dword RefTimeCount;
// extern dword RefFrameCount;
#endif // _SL_TIMER_H_
|