mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
17 lines
245 B
C
17 lines
245 B
C
|
#ifndef LLARP_TYPES_H
|
||
|
#define LLARP_TYEPS_H
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef uint8_t llarp_proto_version_t;
|
||
|
typedef uint64_t llarp_time_t;
|
||
|
typedef uint32_t llarp_seconds_t;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|