zcash-sync/cbindgen.toml

17 lines
371 B
TOML
Raw Normal View History

2022-12-29 03:36:33 -08:00
language = "C"
no_includes = true
after_includes = """
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
typedef void *DartPostCObjectFnType;
"""