#ifndef __indy__types__included__
#define __indy__types__included__

#include <stdint.h>
#include <stdbool.h>

typedef uint8_t       indy_u8_t;
typedef uint32_t      indy_u32_t;
typedef int32_t       indy_i32_t;
typedef int32_t       indy_handle_t;
typedef bool          indy_bool_t;
typedef long long     indy_i64_t;
typedef unsigned long long     indy_u64_t;

#endif
