Re-generate

This commit is contained in:
Pierre Pronchery 2021-01-23 23:25:45 +01:00
parent ac3f32429f
commit 3c15285e4c

View File

@ -8,11 +8,14 @@
ARRAY
ARRAY2
ARRAY3
ArrayData
ArrayError
ArrayFilter
ArrayFilterSwap
ArrayForeach
ArrayForeachSwap
array_new
array_new_copy
array_new_filter
array_new_filter_swap
array_new_type
@ -20,8 +23,12 @@ array_delete
array_count
array_get
array_get_copy
array_get_size
array_set
array_append
array_copy
array_insert
array_prepend
array_remove_pos
array_filter
array_filter_swap
@ -32,6 +39,7 @@ Array
<SECTION>
<FILE>buffer</FILE>
BufferData
buffer_new
buffer_new_copy
buffer_delete
@ -49,6 +57,8 @@ Config
ConfigForeachCallback
ConfigForeachSectionCallback
config_new
config_new_copy
config_new_load
config_delete
config_get
config_set
@ -65,11 +75,15 @@ config_save_preferences_user
<SECTION>
<FILE>error</FILE>
ErrorCode
error_get
error_get_code
error_set
error_setv
error_set_code
error_set_codev
error_set_print
error_set_printv
error_print
</SECTION>
@ -81,6 +95,7 @@ event_new
event_delete
event_loop
event_loop_quit
event_loop_while
event_register_idle
event_register_io_read
event_register_io_write
@ -93,19 +108,25 @@ Event
<SECTION>
<FILE>file</FILE>
FileError
FileMode
FileOffset
FileSeekMode
FILE_MODE_READ
FILE_MODE_WRITE
FILE_MODE_READ_WRITE
FILE_MODE_APPEND
FILE_MODE_CREATE
FILE_MODE_EXCLUSIVE
FILE_MODE_TRUNCATE
file_new
file_delete
file_get_filename
file_get_mode
file_read
file_read_buffer
file_write
file_write_buffer
file_seek
file_unlink
File
@ -113,9 +134,11 @@ File
<SECTION>
<FILE>hash</FILE>
HashFunc
HashCompare
HashForeach
hash_new
hash_new_copy
hash_delete
hash_func_string
hash_compare_string
@ -167,6 +190,7 @@ LICENSE_PUBLIC_DOMAIN_STRING
Mutator
MutatorForeach
mutator_new
mutator_new_copy
mutator_delete
mutator_get
mutator_set
@ -203,22 +227,23 @@ Parser
<SECTION>
<FILE>plugin</FILE>
Plugin
PluginExport
plugin_new
plugin_new_self
plugin_delete
plugin_get_export
plugin_lookup
Plugin
</SECTION>
<SECTION>
<FILE>string</FILE>
String
string_length
string_new
string_new_append
string_new_appendv
string_new_format
string_new_formatv
string_new_length
string_new_replace
string_delete
@ -227,6 +252,8 @@ string_get_length
string_get_size
string_set
string_append
string_append_format
string_append_formatv
string_clear
string_cut
string_compare
@ -265,15 +292,25 @@ token_in_set
Token
</SECTION>
<SECTION>
<FILE>userdata</FILE>
UserData
</SECTION>
<SECTION>
<FILE>variable</FILE>
VariableType
VT_LAST
VT_COUNT
VariableClass
VariableError
variable_new
variable_newv
variable_new_array
variable_new_arrayv
variable_new_compound
variable_new_compoundv
variable_new_compound_variables
variable_new_copy
variable_new_deserialize
variable_new_deserialize_buffer
@ -281,6 +318,7 @@ variable_new_deserialize_type
variable_delete
variable_get_as
variable_get_class
variable_get_pointer
variable_get_type
variable_is_array
variable_is_class
@ -289,7 +327,10 @@ variable_is_instance
variable_is_scalar
variable_is_type
variable_set
variable_set_from
variable_setv
variable_set_type
variable_set_typev
variable_copy
variable_serialize
Variable
</SECTION>