19 lines
328 B
C
19 lines
328 B
C
// Copyright (C) 2011 Valeriano Alfonso Rodriguez (Kableado)
|
|
|
|
#ifndef _TIME_H_
|
|
#define _TIME_H_
|
|
|
|
/////////////////////////////
|
|
// Time_GetTime
|
|
//
|
|
// Gets the current time in usecs.
|
|
long long Time_GetTime();
|
|
|
|
/////////////////////////////
|
|
// Time_Pause
|
|
//
|
|
// Pauses the execution for t usecs.
|
|
void Time_Pause(int pausa);
|
|
|
|
#endif
|