zcash-sync/cbindgen.toml

19 lines
432 B
TOML
Raw Normal View History

2022-12-29 03:36:33 -08:00
language = "C"
no_includes = true
after_includes = """
2023-03-13 16:58:16 -07:00
#if !defined(__APPLE__) || !defined(TARGET_OS_IPHONE)
2022-12-29 03:36:33 -08:00
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;
#ifndef __cplusplus
typedef char bool;
#endif
2022-12-30 14:01:52 -08:00
#endif
2022-12-29 03:36:33 -08:00
typedef void *DartPostCObjectFnType;
"""