cbindgen/tests/rust/exclude_generic_monomorph.toml
2020-11-25 17:30:30 +01:00

25 lines
239 B
TOML

language = "C"
header = """
#include <stdint.h>
#if 0
''' '
#endif
typedef uint64_t Option_Foo;
#if 0
' '''
#endif
#if 0
from libc.stdint cimport uint64_t
ctypedef uint64_t Option_Foo
#endif
"""
[export]
exclude = [
"Option_Foo",
]