blob: 23c795986b3439413a818197383793c86eb62b63 (
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
31
32
33
34
35
36
37
38
|
/*
* PARSEC HEADER: sys_defs.h
*/
#ifndef _SYS_DEFS_H_
#define _SYS_DEFS_H_
// ----------------------------------------------------------------------------
// SYSTEM SUBSYSTEM (SYS) related definitions -
// ----------------------------------------------------------------------------
#ifdef PARSEC_CLIENT
// external variables
extern volatile int FrameRate;
extern volatile int FrameCounter;
extern volatile int RefTimeCount;
extern volatile int RefFrameCount;
// include system-specific subsystem prototypes ---------------------------
//
#include "sys_subh.h"
#else // !PARSEC_CLIENT
#include "sys_refframe_sv.h"
#include "sys_util_sv.h"
//#include "sys_msg_sv.h"
#endif // !PARSEC_CLIENT
#endif // _SYS_DEFS_H_
|