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.hpp

10 lines
206 B
C++
Raw Normal View History

2018-11-19 23:45:37 +01:00
#ifndef LLARP_TYPES_H
#define LLARP_TYPES_H
#include <cstdint>
using llarp_proto_version_t = std::uint8_t;
2018-11-22 16:53:11 +01:00
using llarp_time_t = std::uint64_t;
using llarp_seconds_t = std::uint64_t;
2018-11-19 23:45:37 +01:00
#endif