zcash-sync/binding2.h

15 lines
337 B
C
Raw Permalink Normal View History

2022-06-09 04:28:37 -07:00
#ifndef __APPLE__
typedef char int8_t;
typedef unsigned char uint8_t;
typedef short int uint16_t;
typedef long long int int64_t;
typedef long long int uint64_t;
typedef long long int uintptr_t;
typedef long int int32_t;
typedef long int uint32_t;
2022-10-18 20:57:13 -07:00
#ifndef __cplusplus
2022-06-09 04:28:37 -07:00
typedef char bool;
#endif
2022-10-18 20:57:13 -07:00
#endif
2022-06-09 04:28:37 -07:00
typedef void *DartPostCObjectFnType;