aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Timer.c
blob: af7027416f9a2f78ede51b7cc53b98a938bc3517 (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
39
40
41
42
43
44
45
46
47
48
49
50
#include <BH/Timer.h>


BH_Timer *BH_TimerNew(void)
{
    return NULL;
}


void BH_TimerFree(BH_Timer *timer)
{
    BH_UNUSED(timer);
}


int BH_TimerIsMonotonic(BH_Timer *timer)
{
    BH_UNUSED(timer);
    return 0;
}


void BH_TimerStart(BH_Timer *timer)
{
    BH_UNUSED(timer);
}


int64_t BH_TimerRestart(BH_Timer *timer)
{
    BH_UNUSED(timer);

    return 0;
}


int64_t BH_TimerMilliseconds(BH_Timer *timer)
{
    BH_UNUSED(timer);

    return 0;
}


int64_t BH_TimerNanoseconds(BH_Timer *timer)
{
    BH_UNUSED(timer);

    return 0;
}