2026-01-03 00:19:40 +01:00

15 lines
184 B
C

#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned long TickType;
#define TT_MAX_TICKS ((TickType)(~(TickType)0))
#ifdef __cplusplus
}
#endif