blob: 286aa7cb7b32a354ebff8d284c7dcb4f573ccb03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
void OutputDebugString(char* str)
{
}
double GetTickCount(void)
{
// timespec now;
// clock_gettime()
// if (clock_gettime(CLOCK_MONOTONIC, &now))
// return 0;
return 10.2;//now.tv_sec * 1000.0 + now.tv_nsec / 1000000.0;
}
|