blob: 75b1f70555cb07a1df7f966907dc551db8a3a4fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
/** amount of parallel timers */
#define W2_CLIENT_TIMER_COUNT (4)
extern unsigned long g_w2_client_timers[W2_CLIENT_TIMER_COUNT];
typedef enum {
W2_TIMER_PING = 0
} w2_e_client_timers;
void w2_timer_start(w2_e_client_timers label);
unsigned long w2_timer_end(w2_e_client_timers label);
|