mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
04811f21f4
git-svn-id: https://svn.eduke32.com/eduke32@7976 1a8010ca-5511-0410-912e-c29ae57300e0 # Conflicts: # platform/Windows/build.vcxproj # platform/Windows/build.vcxproj.filters # source/build/src/mdsprite.cpp
18 lines
390 B
C
18 lines
390 B
C
#pragma once
|
|
|
|
#ifndef timer_h__
|
|
#define timer_h__
|
|
|
|
#include "compat.h"
|
|
|
|
int32_t timerInit(int32_t);
|
|
void timerUninit(void);
|
|
void timerUpdate(void);
|
|
int32_t timerGetRate(void);
|
|
uint64_t timerGetTicksU64(void);
|
|
uint64_t timerGetFreqU64(void);
|
|
double timerGetHiTicks(void);
|
|
uint32_t timerGetTicks(void);
|
|
void (*timerSetCallback(void (*callback)(void)))(void);
|
|
|
|
#endif // timer_h__
|