-
Notifications
You must be signed in to change notification settings - Fork 0
/
includes.txt
101 lines (100 loc) · 3.32 KB
/
includes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Only include the sized types that we need in the API, otherwise we
# would generate bindings for half of libc.
--include-typedef int64_t
--include-typedef uint64_t
--include-typedef uintptr_t
--include-typedef size_t
# Be explicit about what we import from the CUE C API,
# otherwise future changes will perturb the Java bindings.
--include-struct cue_attr_arg
--include-struct cue_bopt
--include-struct cue_eopt
--include-typedef cue_attr
--include-typedef cue_ctx
--include-typedef cue_error
--include-typedef cue_value
--include-function cue_all
--include-function cue_attr_getarg
--include-function cue_attr_name
--include-function cue_attr_numargs
--include-function cue_attr_value
--include-function cue_attrs
--include-function cue_bottom
--include-function cue_compile_bytes
--include-function cue_compile_string
--include-function cue_concrete
--include-function cue_concrete_kind
--include-function cue_dec_bool
--include-function cue_dec_bytes
--include-function cue_dec_double
--include-function cue_dec_int64
--include-function cue_dec_json
--include-function cue_dec_string
--include-function cue_dec_uint64
--include-function cue_default
--include-function cue_definitions
--include-function cue_disallow_cycles
--include-function cue_docs
--include-function cue_errors_as_values
--include-function cue_error_string
--include-function cue_filename
--include-function cue_final
--include-function cue_free
--include-function cue_free_all
--include-function cue_from_bool
--include-function cue_from_bytes
--include-function cue_from_double
--include-function cue_from_int64
--include-function cue_from_string
--include-function cue_from_uint64
--include-function cue_hidden
--include-function cue_import_path
--include-function cue_incomplete_kind
--include-function cue_infer_builtins
--include-function cue_inline_imports
--include-function cue_instance_of
--include-function cue_is_equal
--include-function cue_lookup_string
--include-function cue_newctx
--include-function cue_optionals
--include-function cue_raw
--include-function cue_schema
--include-function cue_scope
--include-function cue_top
--include-function cue_unify
--include-function cue_validate
--include-function cue_value_error
--include-function libc_free
--include-constant CUE_ATTR_DECL
--include-constant CUE_ATTR_FIELD
--include-constant CUE_ATTR_VALUE
--include-constant CUE_BUILD_FILENAME
--include-constant CUE_BUILD_IMPORT_PATH
--include-constant CUE_BUILD_INFER_BUILTINS
--include-constant CUE_BUILD_NONE
--include-constant CUE_BUILD_SCOPE
--include-constant CUE_KIND_BOOL
--include-constant CUE_KIND_BOTTOM
--include-constant CUE_KIND_BYTES
--include-constant CUE_KIND_FLOAT
--include-constant CUE_KIND_INT
--include-constant CUE_KIND_LIST
--include-constant CUE_KIND_NULL
--include-constant CUE_KIND_NUMBER
--include-constant CUE_KIND_STRING
--include-constant CUE_KIND_STRUCT
--include-constant CUE_KIND_TOP
--include-constant CUE_OPT_ALL
--include-constant CUE_OPT_ATTR
--include-constant CUE_OPT_CONCRETE
--include-constant CUE_OPT_DEFS
--include-constant CUE_OPT_DISALLOW_CYCLES
--include-constant CUE_OPT_DOCS
--include-constant CUE_OPT_ERRORS_AS_VALUES
--include-constant CUE_OPT_FINAL
--include-constant CUE_OPT_HIDDEN
--include-constant CUE_OPT_INLINE_IMPORTS
--include-constant CUE_OPT_NONE
--include-constant CUE_OPT_OPTIONALS
--include-constant CUE_OPT_RAW
--include-constant CUE_OPT_SCHEMA