mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
15 lines
184 B
C
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
|