1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/types.h

17 lines
245 B
C
Raw Normal View History

2018-01-27 02:18:10 +01:00
#ifndef LLARP_TYPES_H
#define LLARP_TYPES_H
2018-01-27 02:18:10 +01:00
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef uint8_t llarp_proto_version_t;
typedef uint64_t llarp_time_t;
2018-05-19 19:21:56 +02:00
typedef uint64_t llarp_seconds_t;
2018-01-27 02:18:10 +01:00
#ifdef __cplusplus
}
#endif
#endif