1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gtkc.glib; 26 27 version(Tango) 28 private import tango.stdc.stdio; 29 else 30 private import std.stdio; 31 32 private import gtkc.glibtypes; 33 private import gtkc.gthreadtypes; 34 private import gtkc.Loader; 35 private import gtkc.paths; 36 37 mixin( _shared ~ "static this() 38 { 39 // glib.Version 40 41 Linker.link(glib_check_version, \"glib_check_version\", LIBRARY.GLIB); 42 43 // glib.Atomic 44 45 Linker.link(g_atomic_int_get, \"g_atomic_int_get\", LIBRARY.GLIB); 46 Linker.link(g_atomic_int_set, \"g_atomic_int_set\", LIBRARY.GLIB); 47 Linker.link(g_atomic_int_add, \"g_atomic_int_add\", LIBRARY.GLIB); 48 Linker.link(g_atomic_int_exchange_and_add, \"g_atomic_int_exchange_and_add\", LIBRARY.GLIB); 49 Linker.link(g_atomic_int_compare_and_exchange, \"g_atomic_int_compare_and_exchange\", LIBRARY.GLIB); 50 Linker.link(g_atomic_pointer_get, \"g_atomic_pointer_get\", LIBRARY.GLIB); 51 Linker.link(g_atomic_pointer_set, \"g_atomic_pointer_set\", LIBRARY.GLIB); 52 Linker.link(g_atomic_pointer_compare_and_exchange, \"g_atomic_pointer_compare_and_exchange\", LIBRARY.GLIB); 53 Linker.link(g_atomic_int_inc, \"g_atomic_int_inc\", LIBRARY.GLIB); 54 Linker.link(g_atomic_int_dec_and_test, \"g_atomic_int_dec_and_test\", LIBRARY.GLIB); 55 56 // glib.MainLoop 57 58 Linker.link(g_main_loop_new, \"g_main_loop_new\", LIBRARY.GLIB); 59 Linker.link(g_main_loop_ref, \"g_main_loop_ref\", LIBRARY.GLIB); 60 Linker.link(g_main_loop_unref, \"g_main_loop_unref\", LIBRARY.GLIB); 61 Linker.link(g_main_loop_run, \"g_main_loop_run\", LIBRARY.GLIB); 62 Linker.link(g_main_loop_quit, \"g_main_loop_quit\", LIBRARY.GLIB); 63 Linker.link(g_main_loop_is_running, \"g_main_loop_is_running\", LIBRARY.GLIB); 64 Linker.link(g_main_loop_get_context, \"g_main_loop_get_context\", LIBRARY.GLIB); 65 Linker.link(g_main_depth, \"g_main_depth\", LIBRARY.GLIB); 66 Linker.link(g_main_current_source, \"g_main_current_source\", LIBRARY.GLIB); 67 Linker.link(g_poll, \"g_poll\", LIBRARY.GLIB); 68 69 // glib.MainContext 70 71 Linker.link(g_main_context_new, \"g_main_context_new\", LIBRARY.GLIB); 72 Linker.link(g_main_context_ref, \"g_main_context_ref\", LIBRARY.GLIB); 73 Linker.link(g_main_context_unref, \"g_main_context_unref\", LIBRARY.GLIB); 74 Linker.link(g_main_context_default, \"g_main_context_default\", LIBRARY.GLIB); 75 Linker.link(g_main_context_iteration, \"g_main_context_iteration\", LIBRARY.GLIB); 76 Linker.link(g_main_context_pending, \"g_main_context_pending\", LIBRARY.GLIB); 77 Linker.link(g_main_context_find_source_by_id, \"g_main_context_find_source_by_id\", LIBRARY.GLIB); 78 Linker.link(g_main_context_find_source_by_user_data, \"g_main_context_find_source_by_user_data\", LIBRARY.GLIB); 79 Linker.link(g_main_context_find_source_by_funcs_user_data, \"g_main_context_find_source_by_funcs_user_data\", LIBRARY.GLIB); 80 Linker.link(g_main_context_wakeup, \"g_main_context_wakeup\", LIBRARY.GLIB); 81 Linker.link(g_main_context_acquire, \"g_main_context_acquire\", LIBRARY.GLIB); 82 Linker.link(g_main_context_release, \"g_main_context_release\", LIBRARY.GLIB); 83 Linker.link(g_main_context_is_owner, \"g_main_context_is_owner\", LIBRARY.GLIB); 84 Linker.link(g_main_context_wait, \"g_main_context_wait\", LIBRARY.GLIB); 85 Linker.link(g_main_context_prepare, \"g_main_context_prepare\", LIBRARY.GLIB); 86 Linker.link(g_main_context_query, \"g_main_context_query\", LIBRARY.GLIB); 87 Linker.link(g_main_context_check, \"g_main_context_check\", LIBRARY.GLIB); 88 Linker.link(g_main_context_dispatch, \"g_main_context_dispatch\", LIBRARY.GLIB); 89 Linker.link(g_main_context_set_poll_func, \"g_main_context_set_poll_func\", LIBRARY.GLIB); 90 Linker.link(g_main_context_get_poll_func, \"g_main_context_get_poll_func\", LIBRARY.GLIB); 91 Linker.link(g_main_context_add_poll, \"g_main_context_add_poll\", LIBRARY.GLIB); 92 Linker.link(g_main_context_remove_poll, \"g_main_context_remove_poll\", LIBRARY.GLIB); 93 Linker.link(g_main_context_invoke, \"g_main_context_invoke\", LIBRARY.GLIB); 94 Linker.link(g_main_context_invoke_full, \"g_main_context_invoke_full\", LIBRARY.GLIB); 95 Linker.link(g_main_context_get_thread_default, \"g_main_context_get_thread_default\", LIBRARY.GLIB); 96 Linker.link(g_main_context_push_thread_default, \"g_main_context_push_thread_default\", LIBRARY.GLIB); 97 Linker.link(g_main_context_pop_thread_default, \"g_main_context_pop_thread_default\", LIBRARY.GLIB); 98 99 // glib.Timeout 100 101 Linker.link(g_timeout_source_new, \"g_timeout_source_new\", LIBRARY.GLIB); 102 Linker.link(g_timeout_source_new_seconds, \"g_timeout_source_new_seconds\", LIBRARY.GLIB); 103 Linker.link(g_timeout_add, \"g_timeout_add\", LIBRARY.GLIB); 104 Linker.link(g_timeout_add_full, \"g_timeout_add_full\", LIBRARY.GLIB); 105 Linker.link(g_timeout_add_seconds, \"g_timeout_add_seconds\", LIBRARY.GLIB); 106 Linker.link(g_timeout_add_seconds_full, \"g_timeout_add_seconds_full\", LIBRARY.GLIB); 107 108 // glib.Idle 109 110 Linker.link(g_idle_source_new, \"g_idle_source_new\", LIBRARY.GLIB); 111 Linker.link(g_idle_add, \"g_idle_add\", LIBRARY.GLIB); 112 Linker.link(g_idle_add_full, \"g_idle_add_full\", LIBRARY.GLIB); 113 Linker.link(g_idle_remove_by_data, \"g_idle_remove_by_data\", LIBRARY.GLIB); 114 115 // glib.Child 116 117 Linker.link(g_child_watch_source_new, \"g_child_watch_source_new\", LIBRARY.GLIB); 118 Linker.link(g_child_watch_add, \"g_child_watch_add\", LIBRARY.GLIB); 119 Linker.link(g_child_watch_add_full, \"g_child_watch_add_full\", LIBRARY.GLIB); 120 121 // glib.Source 122 123 Linker.link(g_source_new, \"g_source_new\", LIBRARY.GLIB); 124 Linker.link(g_source_ref, \"g_source_ref\", LIBRARY.GLIB); 125 Linker.link(g_source_unref, \"g_source_unref\", LIBRARY.GLIB); 126 Linker.link(g_source_set_funcs, \"g_source_set_funcs\", LIBRARY.GLIB); 127 Linker.link(g_source_attach, \"g_source_attach\", LIBRARY.GLIB); 128 Linker.link(g_source_destroy, \"g_source_destroy\", LIBRARY.GLIB); 129 Linker.link(g_source_is_destroyed, \"g_source_is_destroyed\", LIBRARY.GLIB); 130 Linker.link(g_source_set_priority, \"g_source_set_priority\", LIBRARY.GLIB); 131 Linker.link(g_source_get_priority, \"g_source_get_priority\", LIBRARY.GLIB); 132 Linker.link(g_source_set_can_recurse, \"g_source_set_can_recurse\", LIBRARY.GLIB); 133 Linker.link(g_source_get_can_recurse, \"g_source_get_can_recurse\", LIBRARY.GLIB); 134 Linker.link(g_source_get_id, \"g_source_get_id\", LIBRARY.GLIB); 135 Linker.link(g_source_get_name, \"g_source_get_name\", LIBRARY.GLIB); 136 Linker.link(g_source_set_name, \"g_source_set_name\", LIBRARY.GLIB); 137 Linker.link(g_source_set_name_by_id, \"g_source_set_name_by_id\", LIBRARY.GLIB); 138 Linker.link(g_source_get_context, \"g_source_get_context\", LIBRARY.GLIB); 139 Linker.link(g_source_set_callback, \"g_source_set_callback\", LIBRARY.GLIB); 140 Linker.link(g_source_set_callback_indirect, \"g_source_set_callback_indirect\", LIBRARY.GLIB); 141 Linker.link(g_source_add_poll, \"g_source_add_poll\", LIBRARY.GLIB); 142 Linker.link(g_source_remove_poll, \"g_source_remove_poll\", LIBRARY.GLIB); 143 Linker.link(g_source_add_child_source, \"g_source_add_child_source\", LIBRARY.GLIB); 144 Linker.link(g_source_remove_child_source, \"g_source_remove_child_source\", LIBRARY.GLIB); 145 Linker.link(g_source_get_time, \"g_source_get_time\", LIBRARY.GLIB); 146 Linker.link(g_source_get_current_time, \"g_source_get_current_time\", LIBRARY.GLIB); 147 Linker.link(g_source_remove, \"g_source_remove\", LIBRARY.GLIB); 148 Linker.link(g_source_remove_by_funcs_user_data, \"g_source_remove_by_funcs_user_data\", LIBRARY.GLIB); 149 Linker.link(g_source_remove_by_user_data, \"g_source_remove_by_user_data\", LIBRARY.GLIB); 150 151 // glib.ThreadPool 152 153 Linker.link(g_thread_pool_new, \"g_thread_pool_new\", LIBRARY.GLIB); 154 Linker.link(g_thread_pool_push, \"g_thread_pool_push\", LIBRARY.GLIB); 155 Linker.link(g_thread_pool_set_max_threads, \"g_thread_pool_set_max_threads\", LIBRARY.GLIB); 156 Linker.link(g_thread_pool_get_max_threads, \"g_thread_pool_get_max_threads\", LIBRARY.GLIB); 157 Linker.link(g_thread_pool_get_num_threads, \"g_thread_pool_get_num_threads\", LIBRARY.GLIB); 158 Linker.link(g_thread_pool_unprocessed, \"g_thread_pool_unprocessed\", LIBRARY.GLIB); 159 Linker.link(g_thread_pool_free, \"g_thread_pool_free\", LIBRARY.GLIB); 160 Linker.link(g_thread_pool_set_max_unused_threads, \"g_thread_pool_set_max_unused_threads\", LIBRARY.GLIB); 161 Linker.link(g_thread_pool_get_max_unused_threads, \"g_thread_pool_get_max_unused_threads\", LIBRARY.GLIB); 162 Linker.link(g_thread_pool_get_num_unused_threads, \"g_thread_pool_get_num_unused_threads\", LIBRARY.GLIB); 163 Linker.link(g_thread_pool_stop_unused_threads, \"g_thread_pool_stop_unused_threads\", LIBRARY.GLIB); 164 Linker.link(g_thread_pool_set_sort_function, \"g_thread_pool_set_sort_function\", LIBRARY.GLIB); 165 Linker.link(g_thread_pool_set_max_idle_time, \"g_thread_pool_set_max_idle_time\", LIBRARY.GLIB); 166 Linker.link(g_thread_pool_get_max_idle_time, \"g_thread_pool_get_max_idle_time\", LIBRARY.GLIB); 167 168 // glib.AsyncQueue 169 170 Linker.link(g_async_queue_new, \"g_async_queue_new\", LIBRARY.GLIB); 171 Linker.link(g_async_queue_new_full, \"g_async_queue_new_full\", LIBRARY.GLIB); 172 Linker.link(g_async_queue_ref, \"g_async_queue_ref\", LIBRARY.GLIB); 173 Linker.link(g_async_queue_unref, \"g_async_queue_unref\", LIBRARY.GLIB); 174 Linker.link(g_async_queue_push, \"g_async_queue_push\", LIBRARY.GLIB); 175 Linker.link(g_async_queue_push_sorted, \"g_async_queue_push_sorted\", LIBRARY.GLIB); 176 Linker.link(g_async_queue_pop, \"g_async_queue_pop\", LIBRARY.GLIB); 177 Linker.link(g_async_queue_try_pop, \"g_async_queue_try_pop\", LIBRARY.GLIB); 178 Linker.link(g_async_queue_timed_pop, \"g_async_queue_timed_pop\", LIBRARY.GLIB); 179 Linker.link(g_async_queue_length, \"g_async_queue_length\", LIBRARY.GLIB); 180 Linker.link(g_async_queue_sort, \"g_async_queue_sort\", LIBRARY.GLIB); 181 Linker.link(g_async_queue_lock, \"g_async_queue_lock\", LIBRARY.GLIB); 182 Linker.link(g_async_queue_unlock, \"g_async_queue_unlock\", LIBRARY.GLIB); 183 Linker.link(g_async_queue_ref_unlocked, \"g_async_queue_ref_unlocked\", LIBRARY.GLIB); 184 Linker.link(g_async_queue_unref_and_unlock, \"g_async_queue_unref_and_unlock\", LIBRARY.GLIB); 185 Linker.link(g_async_queue_push_unlocked, \"g_async_queue_push_unlocked\", LIBRARY.GLIB); 186 Linker.link(g_async_queue_push_sorted_unlocked, \"g_async_queue_push_sorted_unlocked\", LIBRARY.GLIB); 187 Linker.link(g_async_queue_pop_unlocked, \"g_async_queue_pop_unlocked\", LIBRARY.GLIB); 188 Linker.link(g_async_queue_try_pop_unlocked, \"g_async_queue_try_pop_unlocked\", LIBRARY.GLIB); 189 Linker.link(g_async_queue_timed_pop_unlocked, \"g_async_queue_timed_pop_unlocked\", LIBRARY.GLIB); 190 Linker.link(g_async_queue_length_unlocked, \"g_async_queue_length_unlocked\", LIBRARY.GLIB); 191 Linker.link(g_async_queue_sort_unlocked, \"g_async_queue_sort_unlocked\", LIBRARY.GLIB); 192 193 // glib.Module 194 195 Linker.link(g_module_open, \"g_module_open\", LIBRARY.GLIB, LIBRARY.GMODULE); 196 Linker.link(g_module_supported, \"g_module_supported\", LIBRARY.GLIB, LIBRARY.GMODULE); 197 Linker.link(g_module_build_path, \"g_module_build_path\", LIBRARY.GLIB, LIBRARY.GMODULE); 198 Linker.link(g_module_symbol, \"g_module_symbol\", LIBRARY.GLIB, LIBRARY.GMODULE); 199 Linker.link(g_module_make_resident, \"g_module_make_resident\", LIBRARY.GLIB, LIBRARY.GMODULE); 200 Linker.link(g_module_close, \"g_module_close\", LIBRARY.GLIB, LIBRARY.GMODULE); 201 Linker.link(g_module_error, \"g_module_error\", LIBRARY.GLIB, LIBRARY.GMODULE); 202 203 // glib.Memory 204 205 Linker.link(g_malloc, \"g_malloc\", LIBRARY.GLIB); 206 Linker.link(g_malloc0, \"g_malloc0\", LIBRARY.GLIB); 207 Linker.link(g_realloc, \"g_realloc\", LIBRARY.GLIB); 208 Linker.link(g_try_malloc, \"g_try_malloc\", LIBRARY.GLIB); 209 Linker.link(g_try_malloc0, \"g_try_malloc0\", LIBRARY.GLIB); 210 Linker.link(g_try_realloc, \"g_try_realloc\", LIBRARY.GLIB); 211 Linker.link(g_malloc_n, \"g_malloc_n\", LIBRARY.GLIB); 212 Linker.link(g_malloc0_n, \"g_malloc0_n\", LIBRARY.GLIB); 213 Linker.link(g_realloc_n, \"g_realloc_n\", LIBRARY.GLIB); 214 Linker.link(g_try_malloc_n, \"g_try_malloc_n\", LIBRARY.GLIB); 215 Linker.link(g_try_malloc0_n, \"g_try_malloc0_n\", LIBRARY.GLIB); 216 Linker.link(g_try_realloc_n, \"g_try_realloc_n\", LIBRARY.GLIB); 217 Linker.link(g_free, \"g_free\", LIBRARY.GLIB); 218 Linker.link(g_memdup, \"g_memdup\", LIBRARY.GLIB); 219 Linker.link(g_mem_set_vtable, \"g_mem_set_vtable\", LIBRARY.GLIB); 220 Linker.link(g_mem_is_system_malloc, \"g_mem_is_system_malloc\", LIBRARY.GLIB); 221 Linker.link(g_mem_profile, \"g_mem_profile\", LIBRARY.GLIB); 222 223 // glib.IOChannel 224 225 Linker.link(g_io_channel_unix_new, \"g_io_channel_unix_new\", LIBRARY.GLIB); 226 Linker.link(g_io_channel_unix_get_fd, \"g_io_channel_unix_get_fd\", LIBRARY.GLIB); 227 Linker.link(g_io_channel_win32_new_fd, \"g_io_channel_win32_new_fd\", LIBRARY.GLIB); 228 Linker.link(g_io_channel_win32_new_socket, \"g_io_channel_win32_new_socket\", LIBRARY.GLIB); 229 Linker.link(g_io_channel_win32_new_messages, \"g_io_channel_win32_new_messages\", LIBRARY.GLIB); 230 Linker.link(g_io_channel_init, \"g_io_channel_init\", LIBRARY.GLIB); 231 Linker.link(g_io_channel_read_chars, \"g_io_channel_read_chars\", LIBRARY.GLIB); 232 Linker.link(g_io_channel_read_unichar, \"g_io_channel_read_unichar\", LIBRARY.GLIB); 233 Linker.link(g_io_channel_read_line, \"g_io_channel_read_line\", LIBRARY.GLIB); 234 Linker.link(g_io_channel_read_line_string, \"g_io_channel_read_line_string\", LIBRARY.GLIB); 235 Linker.link(g_io_channel_read_to_end, \"g_io_channel_read_to_end\", LIBRARY.GLIB); 236 Linker.link(g_io_channel_write_chars, \"g_io_channel_write_chars\", LIBRARY.GLIB); 237 Linker.link(g_io_channel_write_unichar, \"g_io_channel_write_unichar\", LIBRARY.GLIB); 238 Linker.link(g_io_channel_flush, \"g_io_channel_flush\", LIBRARY.GLIB); 239 Linker.link(g_io_channel_seek_position, \"g_io_channel_seek_position\", LIBRARY.GLIB); 240 Linker.link(g_io_channel_shutdown, \"g_io_channel_shutdown\", LIBRARY.GLIB); 241 Linker.link(g_io_channel_error_from_errno, \"g_io_channel_error_from_errno\", LIBRARY.GLIB); 242 Linker.link(g_io_channel_ref, \"g_io_channel_ref\", LIBRARY.GLIB); 243 Linker.link(g_io_channel_unref, \"g_io_channel_unref\", LIBRARY.GLIB); 244 Linker.link(g_io_create_watch, \"g_io_create_watch\", LIBRARY.GLIB); 245 Linker.link(g_io_add_watch, \"g_io_add_watch\", LIBRARY.GLIB); 246 Linker.link(g_io_add_watch_full, \"g_io_add_watch_full\", LIBRARY.GLIB); 247 Linker.link(g_io_channel_get_buffer_size, \"g_io_channel_get_buffer_size\", LIBRARY.GLIB); 248 Linker.link(g_io_channel_set_buffer_size, \"g_io_channel_set_buffer_size\", LIBRARY.GLIB); 249 Linker.link(g_io_channel_get_buffer_condition, \"g_io_channel_get_buffer_condition\", LIBRARY.GLIB); 250 Linker.link(g_io_channel_get_flags, \"g_io_channel_get_flags\", LIBRARY.GLIB); 251 Linker.link(g_io_channel_set_flags, \"g_io_channel_set_flags\", LIBRARY.GLIB); 252 Linker.link(g_io_channel_get_line_term, \"g_io_channel_get_line_term\", LIBRARY.GLIB); 253 Linker.link(g_io_channel_set_line_term, \"g_io_channel_set_line_term\", LIBRARY.GLIB); 254 Linker.link(g_io_channel_get_buffered, \"g_io_channel_get_buffered\", LIBRARY.GLIB); 255 Linker.link(g_io_channel_set_buffered, \"g_io_channel_set_buffered\", LIBRARY.GLIB); 256 Linker.link(g_io_channel_get_encoding, \"g_io_channel_get_encoding\", LIBRARY.GLIB); 257 Linker.link(g_io_channel_set_encoding, \"g_io_channel_set_encoding\", LIBRARY.GLIB); 258 Linker.link(g_io_channel_get_close_on_unref, \"g_io_channel_get_close_on_unref\", LIBRARY.GLIB); 259 Linker.link(g_io_channel_set_close_on_unref, \"g_io_channel_set_close_on_unref\", LIBRARY.GLIB); 260 Linker.link(g_io_channel_read, \"g_io_channel_read\", LIBRARY.GLIB); 261 Linker.link(g_io_channel_write, \"g_io_channel_write\", LIBRARY.GLIB); 262 Linker.link(g_io_channel_seek, \"g_io_channel_seek\", LIBRARY.GLIB); 263 Linker.link(g_io_channel_close, \"g_io_channel_close\", LIBRARY.GLIB); 264 265 // glib.ErrorG 266 267 Linker.link(g_error_new, \"g_error_new\", LIBRARY.GLIB); 268 Linker.link(g_error_new_literal, \"g_error_new_literal\", LIBRARY.GLIB); 269 Linker.link(g_error_new_valist, \"g_error_new_valist\", LIBRARY.GLIB); 270 Linker.link(g_error_free, \"g_error_free\", LIBRARY.GLIB); 271 Linker.link(g_error_copy, \"g_error_copy\", LIBRARY.GLIB); 272 Linker.link(g_error_matches, \"g_error_matches\", LIBRARY.GLIB); 273 Linker.link(g_set_error, \"g_set_error\", LIBRARY.GLIB); 274 Linker.link(g_set_error_literal, \"g_set_error_literal\", LIBRARY.GLIB); 275 Linker.link(g_propagate_error, \"g_propagate_error\", LIBRARY.GLIB); 276 Linker.link(g_clear_error, \"g_clear_error\", LIBRARY.GLIB); 277 Linker.link(g_prefix_error, \"g_prefix_error\", LIBRARY.GLIB); 278 Linker.link(g_propagate_prefixed_error, \"g_propagate_prefixed_error\", LIBRARY.GLIB); 279 280 // glib. 281 282 283 // glib. 284 285 286 // glib.Messages 287 288 Linker.link(g_print, \"g_print\", LIBRARY.GLIB); 289 Linker.link(g_set_print_handler, \"g_set_print_handler\", LIBRARY.GLIB); 290 Linker.link(g_printerr, \"g_printerr\", LIBRARY.GLIB); 291 Linker.link(g_set_printerr_handler, \"g_set_printerr_handler\", LIBRARY.GLIB); 292 Linker.link(g_on_error_query, \"g_on_error_query\", LIBRARY.GLIB); 293 Linker.link(g_on_error_stack_trace, \"g_on_error_stack_trace\", LIBRARY.GLIB); 294 295 // glib.MessageLog 296 297 Linker.link(g_log, \"g_log\", LIBRARY.GLIB); 298 Linker.link(g_logv, \"g_logv\", LIBRARY.GLIB); 299 Linker.link(g_log_set_handler, \"g_log_set_handler\", LIBRARY.GLIB); 300 Linker.link(g_log_remove_handler, \"g_log_remove_handler\", LIBRARY.GLIB); 301 Linker.link(g_log_set_always_fatal, \"g_log_set_always_fatal\", LIBRARY.GLIB); 302 Linker.link(g_log_set_fatal_mask, \"g_log_set_fatal_mask\", LIBRARY.GLIB); 303 Linker.link(g_log_default_handler, \"g_log_default_handler\", LIBRARY.GLIB); 304 Linker.link(g_log_set_default_handler, \"g_log_set_default_handler\", LIBRARY.GLIB); 305 306 // glib.Str 307 308 Linker.link(g_strdup, \"g_strdup\", LIBRARY.GLIB); 309 Linker.link(g_strndup, \"g_strndup\", LIBRARY.GLIB); 310 Linker.link(g_strdupv, \"g_strdupv\", LIBRARY.GLIB); 311 Linker.link(g_strnfill, \"g_strnfill\", LIBRARY.GLIB); 312 Linker.link(g_stpcpy, \"g_stpcpy\", LIBRARY.GLIB); 313 Linker.link(g_strstr_len, \"g_strstr_len\", LIBRARY.GLIB); 314 Linker.link(g_strrstr, \"g_strrstr\", LIBRARY.GLIB); 315 Linker.link(g_strrstr_len, \"g_strrstr_len\", LIBRARY.GLIB); 316 Linker.link(g_str_has_prefix, \"g_str_has_prefix\", LIBRARY.GLIB); 317 Linker.link(g_str_has_suffix, \"g_str_has_suffix\", LIBRARY.GLIB); 318 Linker.link(g_strcmp0, \"g_strcmp0\", LIBRARY.GLIB); 319 Linker.link(g_strlcpy, \"g_strlcpy\", LIBRARY.GLIB); 320 Linker.link(g_strlcat, \"g_strlcat\", LIBRARY.GLIB); 321 Linker.link(g_strdup_printf, \"g_strdup_printf\", LIBRARY.GLIB); 322 Linker.link(g_strdup_vprintf, \"g_strdup_vprintf\", LIBRARY.GLIB); 323 Linker.link(g_printf, \"g_printf\", LIBRARY.GLIB); 324 Linker.link(g_vprintf, \"g_vprintf\", LIBRARY.GLIB); 325 Linker.link(g_fprintf, \"g_fprintf\", LIBRARY.GLIB); 326 Linker.link(g_vfprintf, \"g_vfprintf\", LIBRARY.GLIB); 327 Linker.link(g_sprintf, \"g_sprintf\", LIBRARY.GLIB); 328 Linker.link(g_vsprintf, \"g_vsprintf\", LIBRARY.GLIB); 329 Linker.link(g_snprintf, \"g_snprintf\", LIBRARY.GLIB); 330 Linker.link(g_vsnprintf, \"g_vsnprintf\", LIBRARY.GLIB); 331 Linker.link(g_vasprintf, \"g_vasprintf\", LIBRARY.GLIB); 332 Linker.link(g_printf_string_upper_bound, \"g_printf_string_upper_bound\", LIBRARY.GLIB); 333 Linker.link(g_ascii_isalnum, \"g_ascii_isalnum\", LIBRARY.GLIB); 334 Linker.link(g_ascii_isalpha, \"g_ascii_isalpha\", LIBRARY.GLIB); 335 Linker.link(g_ascii_iscntrl, \"g_ascii_iscntrl\", LIBRARY.GLIB); 336 Linker.link(g_ascii_isdigit, \"g_ascii_isdigit\", LIBRARY.GLIB); 337 Linker.link(g_ascii_isgraph, \"g_ascii_isgraph\", LIBRARY.GLIB); 338 Linker.link(g_ascii_islower, \"g_ascii_islower\", LIBRARY.GLIB); 339 Linker.link(g_ascii_isprint, \"g_ascii_isprint\", LIBRARY.GLIB); 340 Linker.link(g_ascii_ispunct, \"g_ascii_ispunct\", LIBRARY.GLIB); 341 Linker.link(g_ascii_isspace, \"g_ascii_isspace\", LIBRARY.GLIB); 342 Linker.link(g_ascii_isupper, \"g_ascii_isupper\", LIBRARY.GLIB); 343 Linker.link(g_ascii_isxdigit, \"g_ascii_isxdigit\", LIBRARY.GLIB); 344 Linker.link(g_ascii_digit_value, \"g_ascii_digit_value\", LIBRARY.GLIB); 345 Linker.link(g_ascii_xdigit_value, \"g_ascii_xdigit_value\", LIBRARY.GLIB); 346 Linker.link(g_ascii_strcasecmp, \"g_ascii_strcasecmp\", LIBRARY.GLIB); 347 Linker.link(g_ascii_strncasecmp, \"g_ascii_strncasecmp\", LIBRARY.GLIB); 348 Linker.link(g_ascii_strup, \"g_ascii_strup\", LIBRARY.GLIB); 349 Linker.link(g_ascii_strdown, \"g_ascii_strdown\", LIBRARY.GLIB); 350 Linker.link(g_ascii_tolower, \"g_ascii_tolower\", LIBRARY.GLIB); 351 Linker.link(g_ascii_toupper, \"g_ascii_toupper\", LIBRARY.GLIB); 352 Linker.link(g_string_ascii_up, \"g_string_ascii_up\", LIBRARY.GLIB); 353 Linker.link(g_string_ascii_down, \"g_string_ascii_down\", LIBRARY.GLIB); 354 Linker.link(g_strup, \"g_strup\", LIBRARY.GLIB); 355 Linker.link(g_strdown, \"g_strdown\", LIBRARY.GLIB); 356 Linker.link(g_strcasecmp, \"g_strcasecmp\", LIBRARY.GLIB); 357 Linker.link(g_strncasecmp, \"g_strncasecmp\", LIBRARY.GLIB); 358 Linker.link(g_strreverse, \"g_strreverse\", LIBRARY.GLIB); 359 Linker.link(g_ascii_strtoll, \"g_ascii_strtoll\", LIBRARY.GLIB); 360 Linker.link(g_ascii_strtoull, \"g_ascii_strtoull\", LIBRARY.GLIB); 361 Linker.link(g_ascii_strtod, \"g_ascii_strtod\", LIBRARY.GLIB); 362 Linker.link(g_ascii_dtostr, \"g_ascii_dtostr\", LIBRARY.GLIB); 363 Linker.link(g_ascii_formatd, \"g_ascii_formatd\", LIBRARY.GLIB); 364 Linker.link(g_strtod, \"g_strtod\", LIBRARY.GLIB); 365 Linker.link(g_strchug, \"g_strchug\", LIBRARY.GLIB); 366 Linker.link(g_strchomp, \"g_strchomp\", LIBRARY.GLIB); 367 Linker.link(g_strdelimit, \"g_strdelimit\", LIBRARY.GLIB); 368 Linker.link(g_strescape, \"g_strescape\", LIBRARY.GLIB); 369 Linker.link(g_strcompress, \"g_strcompress\", LIBRARY.GLIB); 370 Linker.link(g_strcanon, \"g_strcanon\", LIBRARY.GLIB); 371 Linker.link(g_strsplit, \"g_strsplit\", LIBRARY.GLIB); 372 Linker.link(g_strsplit_set, \"g_strsplit_set\", LIBRARY.GLIB); 373 Linker.link(g_strfreev, \"g_strfreev\", LIBRARY.GLIB); 374 Linker.link(g_strconcat, \"g_strconcat\", LIBRARY.GLIB); 375 Linker.link(g_strjoin, \"g_strjoin\", LIBRARY.GLIB); 376 Linker.link(g_strjoinv, \"g_strjoinv\", LIBRARY.GLIB); 377 Linker.link(g_strv_length, \"g_strv_length\", LIBRARY.GLIB); 378 Linker.link(g_strerror, \"g_strerror\", LIBRARY.GLIB); 379 Linker.link(g_strsignal, \"g_strsignal\", LIBRARY.GLIB); 380 381 // glib.CharacterSet 382 383 Linker.link(g_convert, \"g_convert\", LIBRARY.GLIB); 384 Linker.link(g_convert_with_fallback, \"g_convert_with_fallback\", LIBRARY.GLIB); 385 Linker.link(g_locale_to_utf8, \"g_locale_to_utf8\", LIBRARY.GLIB); 386 Linker.link(g_get_filename_charsets, \"g_get_filename_charsets\", LIBRARY.GLIB); 387 Linker.link(g_filename_display_name, \"g_filename_display_name\", LIBRARY.GLIB); 388 Linker.link(g_filename_display_basename, \"g_filename_display_basename\", LIBRARY.GLIB); 389 Linker.link(g_locale_from_utf8, \"g_locale_from_utf8\", LIBRARY.GLIB); 390 Linker.link(g_get_charset, \"g_get_charset\", LIBRARY.GLIB); 391 392 // glib.Unicode 393 394 Linker.link(g_unichar_validate, \"g_unichar_validate\", LIBRARY.GLIB); 395 Linker.link(g_unichar_isalnum, \"g_unichar_isalnum\", LIBRARY.GLIB); 396 Linker.link(g_unichar_isalpha, \"g_unichar_isalpha\", LIBRARY.GLIB); 397 Linker.link(g_unichar_iscntrl, \"g_unichar_iscntrl\", LIBRARY.GLIB); 398 Linker.link(g_unichar_isdefined, \"g_unichar_isdefined\", LIBRARY.GLIB); 399 Linker.link(g_unichar_isdigit, \"g_unichar_isdigit\", LIBRARY.GLIB); 400 Linker.link(g_unichar_isgraph, \"g_unichar_isgraph\", LIBRARY.GLIB); 401 Linker.link(g_unichar_islower, \"g_unichar_islower\", LIBRARY.GLIB); 402 Linker.link(g_unichar_ismark, \"g_unichar_ismark\", LIBRARY.GLIB); 403 Linker.link(g_unichar_isprint, \"g_unichar_isprint\", LIBRARY.GLIB); 404 Linker.link(g_unichar_ispunct, \"g_unichar_ispunct\", LIBRARY.GLIB); 405 Linker.link(g_unichar_isspace, \"g_unichar_isspace\", LIBRARY.GLIB); 406 Linker.link(g_unichar_istitle, \"g_unichar_istitle\", LIBRARY.GLIB); 407 Linker.link(g_unichar_isupper, \"g_unichar_isupper\", LIBRARY.GLIB); 408 Linker.link(g_unichar_isxdigit, \"g_unichar_isxdigit\", LIBRARY.GLIB); 409 Linker.link(g_unichar_iswide, \"g_unichar_iswide\", LIBRARY.GLIB); 410 Linker.link(g_unichar_iswide_cjk, \"g_unichar_iswide_cjk\", LIBRARY.GLIB); 411 Linker.link(g_unichar_iszerowidth, \"g_unichar_iszerowidth\", LIBRARY.GLIB); 412 Linker.link(g_unichar_toupper, \"g_unichar_toupper\", LIBRARY.GLIB); 413 Linker.link(g_unichar_tolower, \"g_unichar_tolower\", LIBRARY.GLIB); 414 Linker.link(g_unichar_totitle, \"g_unichar_totitle\", LIBRARY.GLIB); 415 Linker.link(g_unichar_digit_value, \"g_unichar_digit_value\", LIBRARY.GLIB); 416 Linker.link(g_unichar_xdigit_value, \"g_unichar_xdigit_value\", LIBRARY.GLIB); 417 Linker.link(g_unichar_type, \"g_unichar_type\", LIBRARY.GLIB); 418 Linker.link(g_unichar_break_type, \"g_unichar_break_type\", LIBRARY.GLIB); 419 Linker.link(g_unichar_combining_class, \"g_unichar_combining_class\", LIBRARY.GLIB); 420 Linker.link(g_unicode_canonical_ordering, \"g_unicode_canonical_ordering\", LIBRARY.GLIB); 421 Linker.link(g_unicode_canonical_decomposition, \"g_unicode_canonical_decomposition\", LIBRARY.GLIB); 422 Linker.link(g_unichar_get_mirror_char, \"g_unichar_get_mirror_char\", LIBRARY.GLIB); 423 Linker.link(g_unichar_get_script, \"g_unichar_get_script\", LIBRARY.GLIB); 424 Linker.link(g_utf8_get_char, \"g_utf8_get_char\", LIBRARY.GLIB); 425 Linker.link(g_utf8_get_char_validated, \"g_utf8_get_char_validated\", LIBRARY.GLIB); 426 Linker.link(g_utf8_offset_to_pointer, \"g_utf8_offset_to_pointer\", LIBRARY.GLIB); 427 Linker.link(g_utf8_pointer_to_offset, \"g_utf8_pointer_to_offset\", LIBRARY.GLIB); 428 Linker.link(g_utf8_prev_char, \"g_utf8_prev_char\", LIBRARY.GLIB); 429 Linker.link(g_utf8_find_next_char, \"g_utf8_find_next_char\", LIBRARY.GLIB); 430 Linker.link(g_utf8_find_prev_char, \"g_utf8_find_prev_char\", LIBRARY.GLIB); 431 Linker.link(g_utf8_strlen, \"g_utf8_strlen\", LIBRARY.GLIB); 432 Linker.link(g_utf8_strncpy, \"g_utf8_strncpy\", LIBRARY.GLIB); 433 Linker.link(g_utf8_strchr, \"g_utf8_strchr\", LIBRARY.GLIB); 434 Linker.link(g_utf8_strrchr, \"g_utf8_strrchr\", LIBRARY.GLIB); 435 Linker.link(g_utf8_strreverse, \"g_utf8_strreverse\", LIBRARY.GLIB); 436 Linker.link(g_utf8_validate, \"g_utf8_validate\", LIBRARY.GLIB); 437 Linker.link(g_utf8_strup, \"g_utf8_strup\", LIBRARY.GLIB); 438 Linker.link(g_utf8_strdown, \"g_utf8_strdown\", LIBRARY.GLIB); 439 Linker.link(g_utf8_casefold, \"g_utf8_casefold\", LIBRARY.GLIB); 440 Linker.link(g_utf8_normalize, \"g_utf8_normalize\", LIBRARY.GLIB); 441 Linker.link(g_utf8_collate, \"g_utf8_collate\", LIBRARY.GLIB); 442 Linker.link(g_utf8_collate_key, \"g_utf8_collate_key\", LIBRARY.GLIB); 443 Linker.link(g_utf8_collate_key_for_filename, \"g_utf8_collate_key_for_filename\", LIBRARY.GLIB); 444 Linker.link(g_utf8_to_utf16, \"g_utf8_to_utf16\", LIBRARY.GLIB); 445 Linker.link(g_utf8_to_ucs4, \"g_utf8_to_ucs4\", LIBRARY.GLIB); 446 Linker.link(g_utf8_to_ucs4_fast, \"g_utf8_to_ucs4_fast\", LIBRARY.GLIB); 447 Linker.link(g_utf16_to_ucs4, \"g_utf16_to_ucs4\", LIBRARY.GLIB); 448 Linker.link(g_utf16_to_utf8, \"g_utf16_to_utf8\", LIBRARY.GLIB); 449 Linker.link(g_ucs4_to_utf16, \"g_ucs4_to_utf16\", LIBRARY.GLIB); 450 Linker.link(g_ucs4_to_utf8, \"g_ucs4_to_utf8\", LIBRARY.GLIB); 451 Linker.link(g_unichar_to_utf8, \"g_unichar_to_utf8\", LIBRARY.GLIB); 452 453 // glib.Base64 454 455 Linker.link(g_base64_encode_step, \"g_base64_encode_step\", LIBRARY.GLIB); 456 Linker.link(g_base64_encode_close, \"g_base64_encode_close\", LIBRARY.GLIB); 457 Linker.link(g_base64_encode, \"g_base64_encode\", LIBRARY.GLIB); 458 Linker.link(g_base64_decode_step, \"g_base64_decode_step\", LIBRARY.GLIB); 459 Linker.link(g_base64_decode, \"g_base64_decode\", LIBRARY.GLIB); 460 Linker.link(g_base64_decode_inplace, \"g_base64_decode_inplace\", LIBRARY.GLIB); 461 462 // glib.Checksum 463 464 Linker.link(g_checksum_type_get_length, \"g_checksum_type_get_length\", LIBRARY.GLIB); 465 Linker.link(g_checksum_new, \"g_checksum_new\", LIBRARY.GLIB); 466 Linker.link(g_checksum_copy, \"g_checksum_copy\", LIBRARY.GLIB); 467 Linker.link(g_checksum_free, \"g_checksum_free\", LIBRARY.GLIB); 468 Linker.link(g_checksum_reset, \"g_checksum_reset\", LIBRARY.GLIB); 469 Linker.link(g_checksum_update, \"g_checksum_update\", LIBRARY.GLIB); 470 Linker.link(g_checksum_get_string, \"g_checksum_get_string\", LIBRARY.GLIB); 471 Linker.link(g_checksum_get_digest, \"g_checksum_get_digest\", LIBRARY.GLIB); 472 Linker.link(g_compute_checksum_for_data, \"g_compute_checksum_for_data\", LIBRARY.GLIB); 473 Linker.link(g_compute_checksum_for_string, \"g_compute_checksum_for_string\", LIBRARY.GLIB); 474 475 // glib.Internationalization 476 477 Linker.link(g_dgettext, \"g_dgettext\", LIBRARY.GLIB); 478 Linker.link(g_dcgettext, \"g_dcgettext\", LIBRARY.GLIB); 479 Linker.link(g_dngettext, \"g_dngettext\", LIBRARY.GLIB); 480 Linker.link(g_dpgettext, \"g_dpgettext\", LIBRARY.GLIB); 481 Linker.link(g_dpgettext2, \"g_dpgettext2\", LIBRARY.GLIB); 482 Linker.link(g_strip_context, \"g_strip_context\", LIBRARY.GLIB); 483 Linker.link(g_get_language_names, \"g_get_language_names\", LIBRARY.GLIB); 484 Linker.link(g_get_locale_variants, \"g_get_locale_variants\", LIBRARY.GLIB); 485 486 // glib.TimeVal 487 488 Linker.link(g_get_current_time, \"g_get_current_time\", LIBRARY.GLIB); 489 Linker.link(g_usleep, \"g_usleep\", LIBRARY.GLIB); 490 Linker.link(g_time_val_add, \"g_time_val_add\", LIBRARY.GLIB); 491 Linker.link(g_time_val_from_iso8601, \"g_time_val_from_iso8601\", LIBRARY.GLIB); 492 Linker.link(g_time_val_to_iso8601, \"g_time_val_to_iso8601\", LIBRARY.GLIB); 493 Linker.link(g_get_monotonic_time, \"g_get_monotonic_time\", LIBRARY.GLIB); 494 Linker.link(g_get_real_time, \"g_get_real_time\", LIBRARY.GLIB); 495 496 // glib.Date 497 498 Linker.link(g_date_new, \"g_date_new\", LIBRARY.GLIB); 499 Linker.link(g_date_new_dmy, \"g_date_new_dmy\", LIBRARY.GLIB); 500 Linker.link(g_date_new_julian, \"g_date_new_julian\", LIBRARY.GLIB); 501 Linker.link(g_date_clear, \"g_date_clear\", LIBRARY.GLIB); 502 Linker.link(g_date_free, \"g_date_free\", LIBRARY.GLIB); 503 Linker.link(g_date_set_day, \"g_date_set_day\", LIBRARY.GLIB); 504 Linker.link(g_date_set_month, \"g_date_set_month\", LIBRARY.GLIB); 505 Linker.link(g_date_set_year, \"g_date_set_year\", LIBRARY.GLIB); 506 Linker.link(g_date_set_dmy, \"g_date_set_dmy\", LIBRARY.GLIB); 507 Linker.link(g_date_set_julian, \"g_date_set_julian\", LIBRARY.GLIB); 508 Linker.link(g_date_set_time, \"g_date_set_time\", LIBRARY.GLIB); 509 Linker.link(g_date_set_time_t, \"g_date_set_time_t\", LIBRARY.GLIB); 510 Linker.link(g_date_set_time_val, \"g_date_set_time_val\", LIBRARY.GLIB); 511 Linker.link(g_date_set_parse, \"g_date_set_parse\", LIBRARY.GLIB); 512 Linker.link(g_date_add_days, \"g_date_add_days\", LIBRARY.GLIB); 513 Linker.link(g_date_subtract_days, \"g_date_subtract_days\", LIBRARY.GLIB); 514 Linker.link(g_date_add_months, \"g_date_add_months\", LIBRARY.GLIB); 515 Linker.link(g_date_subtract_months, \"g_date_subtract_months\", LIBRARY.GLIB); 516 Linker.link(g_date_add_years, \"g_date_add_years\", LIBRARY.GLIB); 517 Linker.link(g_date_subtract_years, \"g_date_subtract_years\", LIBRARY.GLIB); 518 Linker.link(g_date_days_between, \"g_date_days_between\", LIBRARY.GLIB); 519 Linker.link(g_date_compare, \"g_date_compare\", LIBRARY.GLIB); 520 Linker.link(g_date_clamp, \"g_date_clamp\", LIBRARY.GLIB); 521 Linker.link(g_date_order, \"g_date_order\", LIBRARY.GLIB); 522 Linker.link(g_date_get_day, \"g_date_get_day\", LIBRARY.GLIB); 523 Linker.link(g_date_get_month, \"g_date_get_month\", LIBRARY.GLIB); 524 Linker.link(g_date_get_year, \"g_date_get_year\", LIBRARY.GLIB); 525 Linker.link(g_date_get_julian, \"g_date_get_julian\", LIBRARY.GLIB); 526 Linker.link(g_date_get_weekday, \"g_date_get_weekday\", LIBRARY.GLIB); 527 Linker.link(g_date_get_day_of_year, \"g_date_get_day_of_year\", LIBRARY.GLIB); 528 Linker.link(g_date_get_days_in_month, \"g_date_get_days_in_month\", LIBRARY.GLIB); 529 Linker.link(g_date_is_first_of_month, \"g_date_is_first_of_month\", LIBRARY.GLIB); 530 Linker.link(g_date_is_last_of_month, \"g_date_is_last_of_month\", LIBRARY.GLIB); 531 Linker.link(g_date_is_leap_year, \"g_date_is_leap_year\", LIBRARY.GLIB); 532 Linker.link(g_date_get_monday_week_of_year, \"g_date_get_monday_week_of_year\", LIBRARY.GLIB); 533 Linker.link(g_date_get_monday_weeks_in_year, \"g_date_get_monday_weeks_in_year\", LIBRARY.GLIB); 534 Linker.link(g_date_get_sunday_week_of_year, \"g_date_get_sunday_week_of_year\", LIBRARY.GLIB); 535 Linker.link(g_date_get_sunday_weeks_in_year, \"g_date_get_sunday_weeks_in_year\", LIBRARY.GLIB); 536 Linker.link(g_date_get_iso8601_week_of_year, \"g_date_get_iso8601_week_of_year\", LIBRARY.GLIB); 537 Linker.link(g_date_strftime, \"g_date_strftime\", LIBRARY.GLIB); 538 Linker.link(g_date_to_struct_tm, \"g_date_to_struct_tm\", LIBRARY.GLIB); 539 Linker.link(g_date_valid, \"g_date_valid\", LIBRARY.GLIB); 540 Linker.link(g_date_valid_day, \"g_date_valid_day\", LIBRARY.GLIB); 541 Linker.link(g_date_valid_month, \"g_date_valid_month\", LIBRARY.GLIB); 542 Linker.link(g_date_valid_year, \"g_date_valid_year\", LIBRARY.GLIB); 543 Linker.link(g_date_valid_dmy, \"g_date_valid_dmy\", LIBRARY.GLIB); 544 Linker.link(g_date_valid_julian, \"g_date_valid_julian\", LIBRARY.GLIB); 545 Linker.link(g_date_valid_weekday, \"g_date_valid_weekday\", LIBRARY.GLIB); 546 547 // glib.TimeZone 548 549 Linker.link(g_time_zone_unref, \"g_time_zone_unref\", LIBRARY.GLIB); 550 Linker.link(g_time_zone_ref, \"g_time_zone_ref\", LIBRARY.GLIB); 551 Linker.link(g_time_zone_new, \"g_time_zone_new\", LIBRARY.GLIB); 552 Linker.link(g_time_zone_new_local, \"g_time_zone_new_local\", LIBRARY.GLIB); 553 Linker.link(g_time_zone_new_utc, \"g_time_zone_new_utc\", LIBRARY.GLIB); 554 Linker.link(g_time_zone_find_interval, \"g_time_zone_find_interval\", LIBRARY.GLIB); 555 Linker.link(g_time_zone_adjust_time, \"g_time_zone_adjust_time\", LIBRARY.GLIB); 556 Linker.link(g_time_zone_get_abbreviation, \"g_time_zone_get_abbreviation\", LIBRARY.GLIB); 557 Linker.link(g_time_zone_get_offset, \"g_time_zone_get_offset\", LIBRARY.GLIB); 558 Linker.link(g_time_zone_is_dst, \"g_time_zone_is_dst\", LIBRARY.GLIB); 559 560 // glib.DateTime 561 562 Linker.link(g_date_time_unref, \"g_date_time_unref\", LIBRARY.GLIB); 563 Linker.link(g_date_time_ref, \"g_date_time_ref\", LIBRARY.GLIB); 564 Linker.link(g_date_time_new_now, \"g_date_time_new_now\", LIBRARY.GLIB); 565 Linker.link(g_date_time_new_now_local, \"g_date_time_new_now_local\", LIBRARY.GLIB); 566 Linker.link(g_date_time_new_now_utc, \"g_date_time_new_now_utc\", LIBRARY.GLIB); 567 Linker.link(g_date_time_new_from_unix_local, \"g_date_time_new_from_unix_local\", LIBRARY.GLIB); 568 Linker.link(g_date_time_new_from_unix_utc, \"g_date_time_new_from_unix_utc\", LIBRARY.GLIB); 569 Linker.link(g_date_time_new_from_timeval_local, \"g_date_time_new_from_timeval_local\", LIBRARY.GLIB); 570 Linker.link(g_date_time_new_from_timeval_utc, \"g_date_time_new_from_timeval_utc\", LIBRARY.GLIB); 571 Linker.link(g_date_time_new, \"g_date_time_new\", LIBRARY.GLIB); 572 Linker.link(g_date_time_new_local, \"g_date_time_new_local\", LIBRARY.GLIB); 573 Linker.link(g_date_time_new_utc, \"g_date_time_new_utc\", LIBRARY.GLIB); 574 Linker.link(g_date_time_add, \"g_date_time_add\", LIBRARY.GLIB); 575 Linker.link(g_date_time_add_years, \"g_date_time_add_years\", LIBRARY.GLIB); 576 Linker.link(g_date_time_add_months, \"g_date_time_add_months\", LIBRARY.GLIB); 577 Linker.link(g_date_time_add_weeks, \"g_date_time_add_weeks\", LIBRARY.GLIB); 578 Linker.link(g_date_time_add_days, \"g_date_time_add_days\", LIBRARY.GLIB); 579 Linker.link(g_date_time_add_hours, \"g_date_time_add_hours\", LIBRARY.GLIB); 580 Linker.link(g_date_time_add_minutes, \"g_date_time_add_minutes\", LIBRARY.GLIB); 581 Linker.link(g_date_time_add_seconds, \"g_date_time_add_seconds\", LIBRARY.GLIB); 582 Linker.link(g_date_time_add_full, \"g_date_time_add_full\", LIBRARY.GLIB); 583 Linker.link(g_date_time_compare, \"g_date_time_compare\", LIBRARY.GLIB); 584 Linker.link(g_date_time_difference, \"g_date_time_difference\", LIBRARY.GLIB); 585 Linker.link(g_date_time_hash, \"g_date_time_hash\", LIBRARY.GLIB); 586 Linker.link(g_date_time_equal, \"g_date_time_equal\", LIBRARY.GLIB); 587 Linker.link(g_date_time_get_ymd, \"g_date_time_get_ymd\", LIBRARY.GLIB); 588 Linker.link(g_date_time_get_year, \"g_date_time_get_year\", LIBRARY.GLIB); 589 Linker.link(g_date_time_get_month, \"g_date_time_get_month\", LIBRARY.GLIB); 590 Linker.link(g_date_time_get_day_of_month, \"g_date_time_get_day_of_month\", LIBRARY.GLIB); 591 Linker.link(g_date_time_get_week_numbering_year, \"g_date_time_get_week_numbering_year\", LIBRARY.GLIB); 592 Linker.link(g_date_time_get_week_of_year, \"g_date_time_get_week_of_year\", LIBRARY.GLIB); 593 Linker.link(g_date_time_get_day_of_week, \"g_date_time_get_day_of_week\", LIBRARY.GLIB); 594 Linker.link(g_date_time_get_day_of_year, \"g_date_time_get_day_of_year\", LIBRARY.GLIB); 595 Linker.link(g_date_time_get_hour, \"g_date_time_get_hour\", LIBRARY.GLIB); 596 Linker.link(g_date_time_get_minute, \"g_date_time_get_minute\", LIBRARY.GLIB); 597 Linker.link(g_date_time_get_second, \"g_date_time_get_second\", LIBRARY.GLIB); 598 Linker.link(g_date_time_get_microsecond, \"g_date_time_get_microsecond\", LIBRARY.GLIB); 599 Linker.link(g_date_time_get_seconds, \"g_date_time_get_seconds\", LIBRARY.GLIB); 600 Linker.link(g_date_time_to_unix, \"g_date_time_to_unix\", LIBRARY.GLIB); 601 Linker.link(g_date_time_to_timeval, \"g_date_time_to_timeval\", LIBRARY.GLIB); 602 Linker.link(g_date_time_get_utc_offset, \"g_date_time_get_utc_offset\", LIBRARY.GLIB); 603 Linker.link(g_date_time_get_timezone_abbreviation, \"g_date_time_get_timezone_abbreviation\", LIBRARY.GLIB); 604 Linker.link(g_date_time_is_daylight_savings, \"g_date_time_is_daylight_savings\", LIBRARY.GLIB); 605 Linker.link(g_date_time_to_timezone, \"g_date_time_to_timezone\", LIBRARY.GLIB); 606 Linker.link(g_date_time_to_local, \"g_date_time_to_local\", LIBRARY.GLIB); 607 Linker.link(g_date_time_to_utc, \"g_date_time_to_utc\", LIBRARY.GLIB); 608 Linker.link(g_date_time_format, \"g_date_time_format\", LIBRARY.GLIB); 609 610 // glib.RandG 611 612 Linker.link(g_rand_new_with_seed, \"g_rand_new_with_seed\", LIBRARY.GLIB); 613 Linker.link(g_rand_new_with_seed_array, \"g_rand_new_with_seed_array\", LIBRARY.GLIB); 614 Linker.link(g_rand_new, \"g_rand_new\", LIBRARY.GLIB); 615 Linker.link(g_rand_copy, \"g_rand_copy\", LIBRARY.GLIB); 616 Linker.link(g_rand_free, \"g_rand_free\", LIBRARY.GLIB); 617 Linker.link(g_rand_set_seed, \"g_rand_set_seed\", LIBRARY.GLIB); 618 Linker.link(g_rand_set_seed_array, \"g_rand_set_seed_array\", LIBRARY.GLIB); 619 Linker.link(g_rand_int, \"g_rand_int\", LIBRARY.GLIB); 620 Linker.link(g_rand_int_range, \"g_rand_int_range\", LIBRARY.GLIB); 621 Linker.link(g_rand_double, \"g_rand_double\", LIBRARY.GLIB); 622 Linker.link(g_rand_double_range, \"g_rand_double_range\", LIBRARY.GLIB); 623 Linker.link(g_random_set_seed, \"g_random_set_seed\", LIBRARY.GLIB); 624 Linker.link(g_random_int, \"g_random_int\", LIBRARY.GLIB); 625 Linker.link(g_random_int_range, \"g_random_int_range\", LIBRARY.GLIB); 626 Linker.link(g_random_double, \"g_random_double\", LIBRARY.GLIB); 627 Linker.link(g_random_double_range, \"g_random_double_range\", LIBRARY.GLIB); 628 629 // glib.Util 630 631 Linker.link(g_get_application_name, \"g_get_application_name\", LIBRARY.GLIB); 632 Linker.link(g_set_application_name, \"g_set_application_name\", LIBRARY.GLIB); 633 Linker.link(g_get_prgname, \"g_get_prgname\", LIBRARY.GLIB); 634 Linker.link(g_set_prgname, \"g_set_prgname\", LIBRARY.GLIB); 635 Linker.link(g_get_environ, \"g_get_environ\", LIBRARY.GLIB); 636 Linker.link(g_listenv, \"g_listenv\", LIBRARY.GLIB); 637 Linker.link(g_get_user_cache_dir, \"g_get_user_cache_dir\", LIBRARY.GLIB); 638 Linker.link(g_get_user_data_dir, \"g_get_user_data_dir\", LIBRARY.GLIB); 639 Linker.link(g_get_user_config_dir, \"g_get_user_config_dir\", LIBRARY.GLIB); 640 Linker.link(g_get_user_runtime_dir, \"g_get_user_runtime_dir\", LIBRARY.GLIB); 641 Linker.link(g_get_user_special_dir, \"g_get_user_special_dir\", LIBRARY.GLIB); 642 Linker.link(g_get_system_data_dirs, \"g_get_system_data_dirs\", LIBRARY.GLIB); 643 Linker.link(g_get_system_config_dirs, \"g_get_system_config_dirs\", LIBRARY.GLIB); 644 Linker.link(g_reload_user_special_dirs_cache, \"g_reload_user_special_dirs_cache\", LIBRARY.GLIB); 645 Linker.link(g_get_host_name, \"g_get_host_name\", LIBRARY.GLIB); 646 Linker.link(g_basename, \"g_basename\", LIBRARY.GLIB); 647 Linker.link(g_path_is_absolute, \"g_path_is_absolute\", LIBRARY.GLIB); 648 Linker.link(g_path_skip_root, \"g_path_skip_root\", LIBRARY.GLIB); 649 Linker.link(g_path_get_basename, \"g_path_get_basename\", LIBRARY.GLIB); 650 Linker.link(g_path_get_dirname, \"g_path_get_dirname\", LIBRARY.GLIB); 651 Linker.link(g_build_filename, \"g_build_filename\", LIBRARY.GLIB); 652 Linker.link(g_build_filenamev, \"g_build_filenamev\", LIBRARY.GLIB); 653 Linker.link(g_build_path, \"g_build_path\", LIBRARY.GLIB); 654 Linker.link(g_build_pathv, \"g_build_pathv\", LIBRARY.GLIB); 655 Linker.link(g_format_size_for_display, \"g_format_size_for_display\", LIBRARY.GLIB); 656 Linker.link(g_bit_nth_lsf, \"g_bit_nth_lsf\", LIBRARY.GLIB); 657 Linker.link(g_bit_nth_msf, \"g_bit_nth_msf\", LIBRARY.GLIB); 658 Linker.link(g_bit_storage, \"g_bit_storage\", LIBRARY.GLIB); 659 Linker.link(g_spaced_primes_closest, \"g_spaced_primes_closest\", LIBRARY.GLIB); 660 Linker.link(g_atexit, \"g_atexit\", LIBRARY.GLIB); 661 Linker.link(g_parse_debug_string, \"g_parse_debug_string\", LIBRARY.GLIB); 662 Linker.link(g_qsort_with_data, \"g_qsort_with_data\", LIBRARY.GLIB); 663 Linker.link(g_nullify_pointer, \"g_nullify_pointer\", LIBRARY.GLIB); 664 665 // glib.ScannerG 666 667 Linker.link(g_scanner_new, \"g_scanner_new\", LIBRARY.GLIB); 668 Linker.link(g_scanner_destroy, \"g_scanner_destroy\", LIBRARY.GLIB); 669 Linker.link(g_scanner_input_file, \"g_scanner_input_file\", LIBRARY.GLIB); 670 Linker.link(g_scanner_sync_file_offset, \"g_scanner_sync_file_offset\", LIBRARY.GLIB); 671 Linker.link(g_scanner_input_text, \"g_scanner_input_text\", LIBRARY.GLIB); 672 Linker.link(g_scanner_peek_next_token, \"g_scanner_peek_next_token\", LIBRARY.GLIB); 673 Linker.link(g_scanner_get_next_token, \"g_scanner_get_next_token\", LIBRARY.GLIB); 674 Linker.link(g_scanner_eof, \"g_scanner_eof\", LIBRARY.GLIB); 675 Linker.link(g_scanner_cur_line, \"g_scanner_cur_line\", LIBRARY.GLIB); 676 Linker.link(g_scanner_cur_position, \"g_scanner_cur_position\", LIBRARY.GLIB); 677 Linker.link(g_scanner_cur_token, \"g_scanner_cur_token\", LIBRARY.GLIB); 678 Linker.link(g_scanner_cur_value, \"g_scanner_cur_value\", LIBRARY.GLIB); 679 Linker.link(g_scanner_set_scope, \"g_scanner_set_scope\", LIBRARY.GLIB); 680 Linker.link(g_scanner_scope_add_symbol, \"g_scanner_scope_add_symbol\", LIBRARY.GLIB); 681 Linker.link(g_scanner_scope_foreach_symbol, \"g_scanner_scope_foreach_symbol\", LIBRARY.GLIB); 682 Linker.link(g_scanner_scope_lookup_symbol, \"g_scanner_scope_lookup_symbol\", LIBRARY.GLIB); 683 Linker.link(g_scanner_scope_remove_symbol, \"g_scanner_scope_remove_symbol\", LIBRARY.GLIB); 684 Linker.link(g_scanner_lookup_symbol, \"g_scanner_lookup_symbol\", LIBRARY.GLIB); 685 Linker.link(g_scanner_warn, \"g_scanner_warn\", LIBRARY.GLIB); 686 Linker.link(g_scanner_error, \"g_scanner_error\", LIBRARY.GLIB); 687 Linker.link(g_scanner_unexp_token, \"g_scanner_unexp_token\", LIBRARY.GLIB); 688 689 // glib.StringCompletion 690 691 Linker.link(g_completion_new, \"g_completion_new\", LIBRARY.GLIB); 692 Linker.link(g_completion_add_items, \"g_completion_add_items\", LIBRARY.GLIB); 693 Linker.link(g_completion_remove_items, \"g_completion_remove_items\", LIBRARY.GLIB); 694 Linker.link(g_completion_clear_items, \"g_completion_clear_items\", LIBRARY.GLIB); 695 Linker.link(g_completion_complete, \"g_completion_complete\", LIBRARY.GLIB); 696 Linker.link(g_completion_complete_utf8, \"g_completion_complete_utf8\", LIBRARY.GLIB); 697 Linker.link(g_completion_set_compare, \"g_completion_set_compare\", LIBRARY.GLIB); 698 Linker.link(g_completion_free, \"g_completion_free\", LIBRARY.GLIB); 699 700 // glib.Timer 701 702 Linker.link(g_timer_new, \"g_timer_new\", LIBRARY.GLIB); 703 Linker.link(g_timer_start, \"g_timer_start\", LIBRARY.GLIB); 704 Linker.link(g_timer_stop, \"g_timer_stop\", LIBRARY.GLIB); 705 Linker.link(g_timer_continue, \"g_timer_continue\", LIBRARY.GLIB); 706 Linker.link(g_timer_elapsed, \"g_timer_elapsed\", LIBRARY.GLIB); 707 Linker.link(g_timer_reset, \"g_timer_reset\", LIBRARY.GLIB); 708 Linker.link(g_timer_destroy, \"g_timer_destroy\", LIBRARY.GLIB); 709 710 // glib.Spawn 711 712 Linker.link(g_spawn_async_with_pipes, \"g_spawn_async_with_pipes\", LIBRARY.GLIB); 713 Linker.link(g_spawn_async, \"g_spawn_async\", LIBRARY.GLIB); 714 Linker.link(g_spawn_sync, \"g_spawn_sync\", LIBRARY.GLIB); 715 Linker.link(g_spawn_command_line_async, \"g_spawn_command_line_async\", LIBRARY.GLIB); 716 Linker.link(g_spawn_command_line_sync, \"g_spawn_command_line_sync\", LIBRARY.GLIB); 717 Linker.link(g_spawn_close_pid, \"g_spawn_close_pid\", LIBRARY.GLIB); 718 719 // glib.FileUtils 720 721 Linker.link(g_file_error_from_errno, \"g_file_error_from_errno\", LIBRARY.GLIB); 722 Linker.link(g_file_set_contents, \"g_file_set_contents\", LIBRARY.GLIB); 723 Linker.link(g_mkstemp_full, \"g_mkstemp_full\", LIBRARY.GLIB); 724 Linker.link(g_file_read_link, \"g_file_read_link\", LIBRARY.GLIB); 725 Linker.link(g_mkdir_with_parents, \"g_mkdir_with_parents\", LIBRARY.GLIB); 726 Linker.link(g_unlink, \"g_unlink\", LIBRARY.GLIB); 727 Linker.link(g_rmdir, \"g_rmdir\", LIBRARY.GLIB); 728 Linker.link(g_access, \"g_access\", LIBRARY.GLIB); 729 Linker.link(g_chdir, \"g_chdir\", LIBRARY.GLIB); 730 731 // glib.Directory 732 733 Linker.link(g_dir_rewind, \"g_dir_rewind\", LIBRARY.GLIB); 734 Linker.link(g_dir_close, \"g_dir_close\", LIBRARY.GLIB); 735 736 // glib.MappedFile 737 738 Linker.link(g_mapped_file_new, \"g_mapped_file_new\", LIBRARY.GLIB); 739 Linker.link(g_mapped_file_ref, \"g_mapped_file_ref\", LIBRARY.GLIB); 740 Linker.link(g_mapped_file_unref, \"g_mapped_file_unref\", LIBRARY.GLIB); 741 Linker.link(g_mapped_file_free, \"g_mapped_file_free\", LIBRARY.GLIB); 742 Linker.link(g_mapped_file_get_length, \"g_mapped_file_get_length\", LIBRARY.GLIB); 743 Linker.link(g_mapped_file_get_contents, \"g_mapped_file_get_contents\", LIBRARY.GLIB); 744 745 // glib.URI 746 747 Linker.link(g_uri_parse_scheme, \"g_uri_parse_scheme\", LIBRARY.GLIB); 748 Linker.link(g_uri_escape_string, \"g_uri_escape_string\", LIBRARY.GLIB); 749 Linker.link(g_uri_unescape_string, \"g_uri_unescape_string\", LIBRARY.GLIB); 750 Linker.link(g_uri_unescape_segment, \"g_uri_unescape_segment\", LIBRARY.GLIB); 751 Linker.link(g_uri_list_extract_uris, \"g_uri_list_extract_uris\", LIBRARY.GLIB); 752 753 // glib.Hostname 754 755 Linker.link(g_hostname_to_ascii, \"g_hostname_to_ascii\", LIBRARY.GLIB); 756 Linker.link(g_hostname_to_unicode, \"g_hostname_to_unicode\", LIBRARY.GLIB); 757 Linker.link(g_hostname_is_non_ascii, \"g_hostname_is_non_ascii\", LIBRARY.GLIB); 758 Linker.link(g_hostname_is_ascii_encoded, \"g_hostname_is_ascii_encoded\", LIBRARY.GLIB); 759 Linker.link(g_hostname_is_ip_address, \"g_hostname_is_ip_address\", LIBRARY.GLIB); 760 761 // glib.ShellUtils 762 763 Linker.link(g_shell_parse_argv, \"g_shell_parse_argv\", LIBRARY.GLIB); 764 Linker.link(g_shell_quote, \"g_shell_quote\", LIBRARY.GLIB); 765 Linker.link(g_shell_unquote, \"g_shell_unquote\", LIBRARY.GLIB); 766 767 // glib.OptionContext 768 769 Linker.link(g_option_context_new, \"g_option_context_new\", LIBRARY.GLIB); 770 Linker.link(g_option_context_set_summary, \"g_option_context_set_summary\", LIBRARY.GLIB); 771 Linker.link(g_option_context_get_summary, \"g_option_context_get_summary\", LIBRARY.GLIB); 772 Linker.link(g_option_context_set_description, \"g_option_context_set_description\", LIBRARY.GLIB); 773 Linker.link(g_option_context_get_description, \"g_option_context_get_description\", LIBRARY.GLIB); 774 Linker.link(g_option_context_set_translate_func, \"g_option_context_set_translate_func\", LIBRARY.GLIB); 775 Linker.link(g_option_context_set_translation_domain, \"g_option_context_set_translation_domain\", LIBRARY.GLIB); 776 Linker.link(g_option_context_free, \"g_option_context_free\", LIBRARY.GLIB); 777 Linker.link(g_option_context_parse, \"g_option_context_parse\", LIBRARY.GLIB); 778 Linker.link(g_option_context_set_help_enabled, \"g_option_context_set_help_enabled\", LIBRARY.GLIB); 779 Linker.link(g_option_context_get_help_enabled, \"g_option_context_get_help_enabled\", LIBRARY.GLIB); 780 Linker.link(g_option_context_set_ignore_unknown_options, \"g_option_context_set_ignore_unknown_options\", LIBRARY.GLIB); 781 Linker.link(g_option_context_get_ignore_unknown_options, \"g_option_context_get_ignore_unknown_options\", LIBRARY.GLIB); 782 Linker.link(g_option_context_get_help, \"g_option_context_get_help\", LIBRARY.GLIB); 783 Linker.link(g_option_context_add_main_entries, \"g_option_context_add_main_entries\", LIBRARY.GLIB); 784 Linker.link(g_option_context_add_group, \"g_option_context_add_group\", LIBRARY.GLIB); 785 Linker.link(g_option_context_set_main_group, \"g_option_context_set_main_group\", LIBRARY.GLIB); 786 Linker.link(g_option_context_get_main_group, \"g_option_context_get_main_group\", LIBRARY.GLIB); 787 788 // glib.OptionGroup 789 790 Linker.link(g_option_group_new, \"g_option_group_new\", LIBRARY.GLIB); 791 Linker.link(g_option_group_free, \"g_option_group_free\", LIBRARY.GLIB); 792 Linker.link(g_option_group_add_entries, \"g_option_group_add_entries\", LIBRARY.GLIB); 793 Linker.link(g_option_group_set_parse_hooks, \"g_option_group_set_parse_hooks\", LIBRARY.GLIB); 794 Linker.link(g_option_group_set_error_hook, \"g_option_group_set_error_hook\", LIBRARY.GLIB); 795 Linker.link(g_option_group_set_translate_func, \"g_option_group_set_translate_func\", LIBRARY.GLIB); 796 Linker.link(g_option_group_set_translation_domain, \"g_option_group_set_translation_domain\", LIBRARY.GLIB); 797 798 // glib.Pattern 799 800 Linker.link(g_pattern_spec_new, \"g_pattern_spec_new\", LIBRARY.GLIB); 801 Linker.link(g_pattern_spec_free, \"g_pattern_spec_free\", LIBRARY.GLIB); 802 Linker.link(g_pattern_spec_equal, \"g_pattern_spec_equal\", LIBRARY.GLIB); 803 Linker.link(g_pattern_match, \"g_pattern_match\", LIBRARY.GLIB); 804 Linker.link(g_pattern_match_string, \"g_pattern_match_string\", LIBRARY.GLIB); 805 Linker.link(g_pattern_match_simple, \"g_pattern_match_simple\", LIBRARY.GLIB); 806 807 // glib.Regex 808 809 Linker.link(g_regex_new, \"g_regex_new\", LIBRARY.GLIB); 810 Linker.link(g_regex_ref, \"g_regex_ref\", LIBRARY.GLIB); 811 Linker.link(g_regex_unref, \"g_regex_unref\", LIBRARY.GLIB); 812 Linker.link(g_regex_get_pattern, \"g_regex_get_pattern\", LIBRARY.GLIB); 813 Linker.link(g_regex_get_max_backref, \"g_regex_get_max_backref\", LIBRARY.GLIB); 814 Linker.link(g_regex_get_capture_count, \"g_regex_get_capture_count\", LIBRARY.GLIB); 815 Linker.link(g_regex_get_string_number, \"g_regex_get_string_number\", LIBRARY.GLIB); 816 Linker.link(g_regex_get_compile_flags, \"g_regex_get_compile_flags\", LIBRARY.GLIB); 817 Linker.link(g_regex_get_match_flags, \"g_regex_get_match_flags\", LIBRARY.GLIB); 818 Linker.link(g_regex_escape_string, \"g_regex_escape_string\", LIBRARY.GLIB); 819 Linker.link(g_regex_match_simple, \"g_regex_match_simple\", LIBRARY.GLIB); 820 Linker.link(g_regex_match, \"g_regex_match\", LIBRARY.GLIB); 821 Linker.link(g_regex_match_full, \"g_regex_match_full\", LIBRARY.GLIB); 822 Linker.link(g_regex_match_all, \"g_regex_match_all\", LIBRARY.GLIB); 823 Linker.link(g_regex_match_all_full, \"g_regex_match_all_full\", LIBRARY.GLIB); 824 Linker.link(g_regex_split_simple, \"g_regex_split_simple\", LIBRARY.GLIB); 825 Linker.link(g_regex_split, \"g_regex_split\", LIBRARY.GLIB); 826 Linker.link(g_regex_split_full, \"g_regex_split_full\", LIBRARY.GLIB); 827 Linker.link(g_regex_replace, \"g_regex_replace\", LIBRARY.GLIB); 828 Linker.link(g_regex_replace_literal, \"g_regex_replace_literal\", LIBRARY.GLIB); 829 Linker.link(g_regex_replace_eval, \"g_regex_replace_eval\", LIBRARY.GLIB); 830 Linker.link(g_regex_check_replacement, \"g_regex_check_replacement\", LIBRARY.GLIB); 831 832 // glib.MatchInfo 833 834 Linker.link(g_match_info_get_regex, \"g_match_info_get_regex\", LIBRARY.GLIB); 835 Linker.link(g_match_info_get_string, \"g_match_info_get_string\", LIBRARY.GLIB); 836 Linker.link(g_match_info_free, \"g_match_info_free\", LIBRARY.GLIB); 837 Linker.link(g_match_info_matches, \"g_match_info_matches\", LIBRARY.GLIB); 838 Linker.link(g_match_info_next, \"g_match_info_next\", LIBRARY.GLIB); 839 Linker.link(g_match_info_get_match_count, \"g_match_info_get_match_count\", LIBRARY.GLIB); 840 Linker.link(g_match_info_is_partial_match, \"g_match_info_is_partial_match\", LIBRARY.GLIB); 841 Linker.link(g_match_info_expand_references, \"g_match_info_expand_references\", LIBRARY.GLIB); 842 Linker.link(g_match_info_fetch, \"g_match_info_fetch\", LIBRARY.GLIB); 843 Linker.link(g_match_info_fetch_pos, \"g_match_info_fetch_pos\", LIBRARY.GLIB); 844 Linker.link(g_match_info_fetch_named, \"g_match_info_fetch_named\", LIBRARY.GLIB); 845 Linker.link(g_match_info_fetch_named_pos, \"g_match_info_fetch_named_pos\", LIBRARY.GLIB); 846 Linker.link(g_match_info_fetch_all, \"g_match_info_fetch_all\", LIBRARY.GLIB); 847 848 // glib.SimpleXML 849 850 Linker.link(g_markup_escape_text, \"g_markup_escape_text\", LIBRARY.GLIB); 851 Linker.link(g_markup_printf_escaped, \"g_markup_printf_escaped\", LIBRARY.GLIB); 852 Linker.link(g_markup_vprintf_escaped, \"g_markup_vprintf_escaped\", LIBRARY.GLIB); 853 Linker.link(g_markup_parse_context_end_parse, \"g_markup_parse_context_end_parse\", LIBRARY.GLIB); 854 Linker.link(g_markup_parse_context_free, \"g_markup_parse_context_free\", LIBRARY.GLIB); 855 Linker.link(g_markup_parse_context_get_position, \"g_markup_parse_context_get_position\", LIBRARY.GLIB); 856 Linker.link(g_markup_parse_context_get_element, \"g_markup_parse_context_get_element\", LIBRARY.GLIB); 857 Linker.link(g_markup_parse_context_get_element_stack, \"g_markup_parse_context_get_element_stack\", LIBRARY.GLIB); 858 Linker.link(g_markup_parse_context_get_user_data, \"g_markup_parse_context_get_user_data\", LIBRARY.GLIB); 859 Linker.link(g_markup_parse_context_new, \"g_markup_parse_context_new\", LIBRARY.GLIB); 860 Linker.link(g_markup_parse_context_parse, \"g_markup_parse_context_parse\", LIBRARY.GLIB); 861 Linker.link(g_markup_parse_context_push, \"g_markup_parse_context_push\", LIBRARY.GLIB); 862 Linker.link(g_markup_parse_context_pop, \"g_markup_parse_context_pop\", LIBRARY.GLIB); 863 Linker.link(g_markup_collect_attributes, \"g_markup_collect_attributes\", LIBRARY.GLIB); 864 865 // glib.KeyFile 866 867 Linker.link(g_key_file_new, \"g_key_file_new\", LIBRARY.GLIB); 868 Linker.link(g_key_file_free, \"g_key_file_free\", LIBRARY.GLIB); 869 Linker.link(g_key_file_set_list_separator, \"g_key_file_set_list_separator\", LIBRARY.GLIB); 870 Linker.link(g_key_file_load_from_file, \"g_key_file_load_from_file\", LIBRARY.GLIB); 871 Linker.link(g_key_file_load_from_data, \"g_key_file_load_from_data\", LIBRARY.GLIB); 872 Linker.link(g_key_file_load_from_data_dirs, \"g_key_file_load_from_data_dirs\", LIBRARY.GLIB); 873 Linker.link(g_key_file_load_from_dirs, \"g_key_file_load_from_dirs\", LIBRARY.GLIB); 874 Linker.link(g_key_file_to_data, \"g_key_file_to_data\", LIBRARY.GLIB); 875 Linker.link(g_key_file_get_start_group, \"g_key_file_get_start_group\", LIBRARY.GLIB); 876 Linker.link(g_key_file_get_groups, \"g_key_file_get_groups\", LIBRARY.GLIB); 877 Linker.link(g_key_file_get_keys, \"g_key_file_get_keys\", LIBRARY.GLIB); 878 Linker.link(g_key_file_has_group, \"g_key_file_has_group\", LIBRARY.GLIB); 879 Linker.link(g_key_file_has_key, \"g_key_file_has_key\", LIBRARY.GLIB); 880 Linker.link(g_key_file_get_value, \"g_key_file_get_value\", LIBRARY.GLIB); 881 Linker.link(g_key_file_get_string, \"g_key_file_get_string\", LIBRARY.GLIB); 882 Linker.link(g_key_file_get_locale_string, \"g_key_file_get_locale_string\", LIBRARY.GLIB); 883 Linker.link(g_key_file_get_boolean, \"g_key_file_get_boolean\", LIBRARY.GLIB); 884 Linker.link(g_key_file_get_integer, \"g_key_file_get_integer\", LIBRARY.GLIB); 885 Linker.link(g_key_file_get_int64, \"g_key_file_get_int64\", LIBRARY.GLIB); 886 Linker.link(g_key_file_get_uint64, \"g_key_file_get_uint64\", LIBRARY.GLIB); 887 Linker.link(g_key_file_get_double, \"g_key_file_get_double\", LIBRARY.GLIB); 888 Linker.link(g_key_file_get_string_list, \"g_key_file_get_string_list\", LIBRARY.GLIB); 889 Linker.link(g_key_file_get_locale_string_list, \"g_key_file_get_locale_string_list\", LIBRARY.GLIB); 890 Linker.link(g_key_file_get_boolean_list, \"g_key_file_get_boolean_list\", LIBRARY.GLIB); 891 Linker.link(g_key_file_get_integer_list, \"g_key_file_get_integer_list\", LIBRARY.GLIB); 892 Linker.link(g_key_file_get_double_list, \"g_key_file_get_double_list\", LIBRARY.GLIB); 893 Linker.link(g_key_file_get_comment, \"g_key_file_get_comment\", LIBRARY.GLIB); 894 Linker.link(g_key_file_set_value, \"g_key_file_set_value\", LIBRARY.GLIB); 895 Linker.link(g_key_file_set_string, \"g_key_file_set_string\", LIBRARY.GLIB); 896 Linker.link(g_key_file_set_locale_string, \"g_key_file_set_locale_string\", LIBRARY.GLIB); 897 Linker.link(g_key_file_set_boolean, \"g_key_file_set_boolean\", LIBRARY.GLIB); 898 Linker.link(g_key_file_set_integer, \"g_key_file_set_integer\", LIBRARY.GLIB); 899 Linker.link(g_key_file_set_int64, \"g_key_file_set_int64\", LIBRARY.GLIB); 900 Linker.link(g_key_file_set_uint64, \"g_key_file_set_uint64\", LIBRARY.GLIB); 901 Linker.link(g_key_file_set_double, \"g_key_file_set_double\", LIBRARY.GLIB); 902 Linker.link(g_key_file_set_string_list, \"g_key_file_set_string_list\", LIBRARY.GLIB); 903 Linker.link(g_key_file_set_locale_string_list, \"g_key_file_set_locale_string_list\", LIBRARY.GLIB); 904 Linker.link(g_key_file_set_boolean_list, \"g_key_file_set_boolean_list\", LIBRARY.GLIB); 905 Linker.link(g_key_file_set_integer_list, \"g_key_file_set_integer_list\", LIBRARY.GLIB); 906 Linker.link(g_key_file_set_double_list, \"g_key_file_set_double_list\", LIBRARY.GLIB); 907 Linker.link(g_key_file_set_comment, \"g_key_file_set_comment\", LIBRARY.GLIB); 908 Linker.link(g_key_file_remove_group, \"g_key_file_remove_group\", LIBRARY.GLIB); 909 Linker.link(g_key_file_remove_key, \"g_key_file_remove_key\", LIBRARY.GLIB); 910 Linker.link(g_key_file_remove_comment, \"g_key_file_remove_comment\", LIBRARY.GLIB); 911 912 // glib.BookmarkFile 913 914 Linker.link(g_bookmark_file_new, \"g_bookmark_file_new\", LIBRARY.GLIB); 915 Linker.link(g_bookmark_file_free, \"g_bookmark_file_free\", LIBRARY.GLIB); 916 Linker.link(g_bookmark_file_load_from_file, \"g_bookmark_file_load_from_file\", LIBRARY.GLIB); 917 Linker.link(g_bookmark_file_load_from_data, \"g_bookmark_file_load_from_data\", LIBRARY.GLIB); 918 Linker.link(g_bookmark_file_load_from_data_dirs, \"g_bookmark_file_load_from_data_dirs\", LIBRARY.GLIB); 919 Linker.link(g_bookmark_file_to_data, \"g_bookmark_file_to_data\", LIBRARY.GLIB); 920 Linker.link(g_bookmark_file_to_file, \"g_bookmark_file_to_file\", LIBRARY.GLIB); 921 Linker.link(g_bookmark_file_has_item, \"g_bookmark_file_has_item\", LIBRARY.GLIB); 922 Linker.link(g_bookmark_file_has_group, \"g_bookmark_file_has_group\", LIBRARY.GLIB); 923 Linker.link(g_bookmark_file_has_application, \"g_bookmark_file_has_application\", LIBRARY.GLIB); 924 Linker.link(g_bookmark_file_get_size, \"g_bookmark_file_get_size\", LIBRARY.GLIB); 925 Linker.link(g_bookmark_file_get_uris, \"g_bookmark_file_get_uris\", LIBRARY.GLIB); 926 Linker.link(g_bookmark_file_get_title, \"g_bookmark_file_get_title\", LIBRARY.GLIB); 927 Linker.link(g_bookmark_file_get_description, \"g_bookmark_file_get_description\", LIBRARY.GLIB); 928 Linker.link(g_bookmark_file_get_mime_type, \"g_bookmark_file_get_mime_type\", LIBRARY.GLIB); 929 Linker.link(g_bookmark_file_get_is_private, \"g_bookmark_file_get_is_private\", LIBRARY.GLIB); 930 Linker.link(g_bookmark_file_get_icon, \"g_bookmark_file_get_icon\", LIBRARY.GLIB); 931 Linker.link(g_bookmark_file_get_added, \"g_bookmark_file_get_added\", LIBRARY.GLIB); 932 Linker.link(g_bookmark_file_get_modified, \"g_bookmark_file_get_modified\", LIBRARY.GLIB); 933 Linker.link(g_bookmark_file_get_visited, \"g_bookmark_file_get_visited\", LIBRARY.GLIB); 934 Linker.link(g_bookmark_file_get_groups, \"g_bookmark_file_get_groups\", LIBRARY.GLIB); 935 Linker.link(g_bookmark_file_get_applications, \"g_bookmark_file_get_applications\", LIBRARY.GLIB); 936 Linker.link(g_bookmark_file_get_app_info, \"g_bookmark_file_get_app_info\", LIBRARY.GLIB); 937 Linker.link(g_bookmark_file_set_title, \"g_bookmark_file_set_title\", LIBRARY.GLIB); 938 Linker.link(g_bookmark_file_set_description, \"g_bookmark_file_set_description\", LIBRARY.GLIB); 939 Linker.link(g_bookmark_file_set_mime_type, \"g_bookmark_file_set_mime_type\", LIBRARY.GLIB); 940 Linker.link(g_bookmark_file_set_is_private, \"g_bookmark_file_set_is_private\", LIBRARY.GLIB); 941 Linker.link(g_bookmark_file_set_icon, \"g_bookmark_file_set_icon\", LIBRARY.GLIB); 942 Linker.link(g_bookmark_file_set_added, \"g_bookmark_file_set_added\", LIBRARY.GLIB); 943 Linker.link(g_bookmark_file_set_groups, \"g_bookmark_file_set_groups\", LIBRARY.GLIB); 944 Linker.link(g_bookmark_file_set_modified, \"g_bookmark_file_set_modified\", LIBRARY.GLIB); 945 Linker.link(g_bookmark_file_set_visited, \"g_bookmark_file_set_visited\", LIBRARY.GLIB); 946 Linker.link(g_bookmark_file_set_app_info, \"g_bookmark_file_set_app_info\", LIBRARY.GLIB); 947 Linker.link(g_bookmark_file_add_group, \"g_bookmark_file_add_group\", LIBRARY.GLIB); 948 Linker.link(g_bookmark_file_add_application, \"g_bookmark_file_add_application\", LIBRARY.GLIB); 949 Linker.link(g_bookmark_file_remove_group, \"g_bookmark_file_remove_group\", LIBRARY.GLIB); 950 Linker.link(g_bookmark_file_remove_application, \"g_bookmark_file_remove_application\", LIBRARY.GLIB); 951 Linker.link(g_bookmark_file_remove_item, \"g_bookmark_file_remove_item\", LIBRARY.GLIB); 952 Linker.link(g_bookmark_file_move_item, \"g_bookmark_file_move_item\", LIBRARY.GLIB); 953 954 // glib.WindowsUtils 955 956 Linker.link(g_win32_error_message, \"g_win32_error_message\", LIBRARY.GLIB); 957 Linker.link(g_win32_getlocale, \"g_win32_getlocale\", LIBRARY.GLIB); 958 Linker.link(g_win32_get_package_installation_directory_of_module, \"g_win32_get_package_installation_directory_of_module\", LIBRARY.GLIB); 959 Linker.link(g_win32_get_windows_version, \"g_win32_get_windows_version\", LIBRARY.GLIB); 960 Linker.link(g_win32_locale_filename_from_utf8, \"g_win32_locale_filename_from_utf8\", LIBRARY.GLIB); 961 962 // glib.MemorySlice 963 964 Linker.link(g_slice_alloc, \"g_slice_alloc\", LIBRARY.GLIB); 965 Linker.link(g_slice_alloc0, \"g_slice_alloc0\", LIBRARY.GLIB); 966 Linker.link(g_slice_copy, \"g_slice_copy\", LIBRARY.GLIB); 967 Linker.link(g_slice_free1, \"g_slice_free1\", LIBRARY.GLIB); 968 Linker.link(g_slice_free_chain_with_offset, \"g_slice_free_chain_with_offset\", LIBRARY.GLIB); 969 970 // glib.MemoryChunk 971 972 Linker.link(g_mem_chunk_new, \"g_mem_chunk_new\", LIBRARY.GLIB); 973 Linker.link(g_mem_chunk_alloc, \"g_mem_chunk_alloc\", LIBRARY.GLIB); 974 Linker.link(g_mem_chunk_alloc0, \"g_mem_chunk_alloc0\", LIBRARY.GLIB); 975 Linker.link(g_mem_chunk_free, \"g_mem_chunk_free\", LIBRARY.GLIB); 976 Linker.link(g_mem_chunk_destroy, \"g_mem_chunk_destroy\", LIBRARY.GLIB); 977 Linker.link(g_mem_chunk_reset, \"g_mem_chunk_reset\", LIBRARY.GLIB); 978 Linker.link(g_mem_chunk_clean, \"g_mem_chunk_clean\", LIBRARY.GLIB); 979 Linker.link(g_blow_chunks, \"g_blow_chunks\", LIBRARY.GLIB); 980 Linker.link(g_mem_chunk_info, \"g_mem_chunk_info\", LIBRARY.GLIB); 981 Linker.link(g_mem_chunk_print, \"g_mem_chunk_print\", LIBRARY.GLIB); 982 983 // glib.ListG 984 985 Linker.link(g_list_append, \"g_list_append\", LIBRARY.GLIB); 986 Linker.link(g_list_prepend, \"g_list_prepend\", LIBRARY.GLIB); 987 Linker.link(g_list_insert, \"g_list_insert\", LIBRARY.GLIB); 988 Linker.link(g_list_insert_before, \"g_list_insert_before\", LIBRARY.GLIB); 989 Linker.link(g_list_insert_sorted, \"g_list_insert_sorted\", LIBRARY.GLIB); 990 Linker.link(g_list_remove, \"g_list_remove\", LIBRARY.GLIB); 991 Linker.link(g_list_remove_link, \"g_list_remove_link\", LIBRARY.GLIB); 992 Linker.link(g_list_delete_link, \"g_list_delete_link\", LIBRARY.GLIB); 993 Linker.link(g_list_remove_all, \"g_list_remove_all\", LIBRARY.GLIB); 994 Linker.link(g_list_free, \"g_list_free\", LIBRARY.GLIB); 995 Linker.link(g_list_free_full, \"g_list_free_full\", LIBRARY.GLIB); 996 Linker.link(g_list_alloc, \"g_list_alloc\", LIBRARY.GLIB); 997 Linker.link(g_list_free_1, \"g_list_free_1\", LIBRARY.GLIB); 998 Linker.link(g_list_length, \"g_list_length\", LIBRARY.GLIB); 999 Linker.link(g_list_copy, \"g_list_copy\", LIBRARY.GLIB); 1000 Linker.link(g_list_reverse, \"g_list_reverse\", LIBRARY.GLIB); 1001 Linker.link(g_list_sort, \"g_list_sort\", LIBRARY.GLIB); 1002 Linker.link(g_list_insert_sorted_with_data, \"g_list_insert_sorted_with_data\", LIBRARY.GLIB); 1003 Linker.link(g_list_sort_with_data, \"g_list_sort_with_data\", LIBRARY.GLIB); 1004 Linker.link(g_list_concat, \"g_list_concat\", LIBRARY.GLIB); 1005 Linker.link(g_list_foreach, \"g_list_foreach\", LIBRARY.GLIB); 1006 Linker.link(g_list_first, \"g_list_first\", LIBRARY.GLIB); 1007 Linker.link(g_list_last, \"g_list_last\", LIBRARY.GLIB); 1008 Linker.link(g_list_nth, \"g_list_nth\", LIBRARY.GLIB); 1009 Linker.link(g_list_nth_data, \"g_list_nth_data\", LIBRARY.GLIB); 1010 Linker.link(g_list_nth_prev, \"g_list_nth_prev\", LIBRARY.GLIB); 1011 Linker.link(g_list_find, \"g_list_find\", LIBRARY.GLIB); 1012 Linker.link(g_list_find_custom, \"g_list_find_custom\", LIBRARY.GLIB); 1013 Linker.link(g_list_position, \"g_list_position\", LIBRARY.GLIB); 1014 Linker.link(g_list_index, \"g_list_index\", LIBRARY.GLIB); 1015 Linker.link(g_list_push_allocator, \"g_list_push_allocator\", LIBRARY.GLIB); 1016 Linker.link(g_list_pop_allocator, \"g_list_pop_allocator\", LIBRARY.GLIB); 1017 1018 // glib.ListSG 1019 1020 Linker.link(g_slist_alloc, \"g_slist_alloc\", LIBRARY.GLIB); 1021 Linker.link(g_slist_append, \"g_slist_append\", LIBRARY.GLIB); 1022 Linker.link(g_slist_prepend, \"g_slist_prepend\", LIBRARY.GLIB); 1023 Linker.link(g_slist_insert, \"g_slist_insert\", LIBRARY.GLIB); 1024 Linker.link(g_slist_insert_before, \"g_slist_insert_before\", LIBRARY.GLIB); 1025 Linker.link(g_slist_insert_sorted, \"g_slist_insert_sorted\", LIBRARY.GLIB); 1026 Linker.link(g_slist_remove, \"g_slist_remove\", LIBRARY.GLIB); 1027 Linker.link(g_slist_remove_link, \"g_slist_remove_link\", LIBRARY.GLIB); 1028 Linker.link(g_slist_delete_link, \"g_slist_delete_link\", LIBRARY.GLIB); 1029 Linker.link(g_slist_remove_all, \"g_slist_remove_all\", LIBRARY.GLIB); 1030 Linker.link(g_slist_free, \"g_slist_free\", LIBRARY.GLIB); 1031 Linker.link(g_slist_free_full, \"g_slist_free_full\", LIBRARY.GLIB); 1032 Linker.link(g_slist_free_1, \"g_slist_free_1\", LIBRARY.GLIB); 1033 Linker.link(g_slist_length, \"g_slist_length\", LIBRARY.GLIB); 1034 Linker.link(g_slist_copy, \"g_slist_copy\", LIBRARY.GLIB); 1035 Linker.link(g_slist_reverse, \"g_slist_reverse\", LIBRARY.GLIB); 1036 Linker.link(g_slist_insert_sorted_with_data, \"g_slist_insert_sorted_with_data\", LIBRARY.GLIB); 1037 Linker.link(g_slist_sort, \"g_slist_sort\", LIBRARY.GLIB); 1038 Linker.link(g_slist_sort_with_data, \"g_slist_sort_with_data\", LIBRARY.GLIB); 1039 Linker.link(g_slist_concat, \"g_slist_concat\", LIBRARY.GLIB); 1040 Linker.link(g_slist_foreach, \"g_slist_foreach\", LIBRARY.GLIB); 1041 Linker.link(g_slist_last, \"g_slist_last\", LIBRARY.GLIB); 1042 Linker.link(g_slist_nth, \"g_slist_nth\", LIBRARY.GLIB); 1043 Linker.link(g_slist_nth_data, \"g_slist_nth_data\", LIBRARY.GLIB); 1044 Linker.link(g_slist_find, \"g_slist_find\", LIBRARY.GLIB); 1045 Linker.link(g_slist_find_custom, \"g_slist_find_custom\", LIBRARY.GLIB); 1046 Linker.link(g_slist_position, \"g_slist_position\", LIBRARY.GLIB); 1047 Linker.link(g_slist_index, \"g_slist_index\", LIBRARY.GLIB); 1048 Linker.link(g_slist_push_allocator, \"g_slist_push_allocator\", LIBRARY.GLIB); 1049 Linker.link(g_slist_pop_allocator, \"g_slist_pop_allocator\", LIBRARY.GLIB); 1050 1051 // glib.QueueG 1052 1053 Linker.link(g_queue_new, \"g_queue_new\", LIBRARY.GLIB); 1054 Linker.link(g_queue_free, \"g_queue_free\", LIBRARY.GLIB); 1055 Linker.link(g_queue_init, \"g_queue_init\", LIBRARY.GLIB); 1056 Linker.link(g_queue_clear, \"g_queue_clear\", LIBRARY.GLIB); 1057 Linker.link(g_queue_is_empty, \"g_queue_is_empty\", LIBRARY.GLIB); 1058 Linker.link(g_queue_get_length, \"g_queue_get_length\", LIBRARY.GLIB); 1059 Linker.link(g_queue_reverse, \"g_queue_reverse\", LIBRARY.GLIB); 1060 Linker.link(g_queue_copy, \"g_queue_copy\", LIBRARY.GLIB); 1061 Linker.link(g_queue_foreach, \"g_queue_foreach\", LIBRARY.GLIB); 1062 Linker.link(g_queue_find, \"g_queue_find\", LIBRARY.GLIB); 1063 Linker.link(g_queue_find_custom, \"g_queue_find_custom\", LIBRARY.GLIB); 1064 Linker.link(g_queue_sort, \"g_queue_sort\", LIBRARY.GLIB); 1065 Linker.link(g_queue_push_head, \"g_queue_push_head\", LIBRARY.GLIB); 1066 Linker.link(g_queue_push_tail, \"g_queue_push_tail\", LIBRARY.GLIB); 1067 Linker.link(g_queue_push_nth, \"g_queue_push_nth\", LIBRARY.GLIB); 1068 Linker.link(g_queue_pop_head, \"g_queue_pop_head\", LIBRARY.GLIB); 1069 Linker.link(g_queue_pop_tail, \"g_queue_pop_tail\", LIBRARY.GLIB); 1070 Linker.link(g_queue_pop_nth, \"g_queue_pop_nth\", LIBRARY.GLIB); 1071 Linker.link(g_queue_peek_head, \"g_queue_peek_head\", LIBRARY.GLIB); 1072 Linker.link(g_queue_peek_tail, \"g_queue_peek_tail\", LIBRARY.GLIB); 1073 Linker.link(g_queue_peek_nth, \"g_queue_peek_nth\", LIBRARY.GLIB); 1074 Linker.link(g_queue_index, \"g_queue_index\", LIBRARY.GLIB); 1075 Linker.link(g_queue_remove, \"g_queue_remove\", LIBRARY.GLIB); 1076 Linker.link(g_queue_remove_all, \"g_queue_remove_all\", LIBRARY.GLIB); 1077 Linker.link(g_queue_insert_before, \"g_queue_insert_before\", LIBRARY.GLIB); 1078 Linker.link(g_queue_insert_after, \"g_queue_insert_after\", LIBRARY.GLIB); 1079 Linker.link(g_queue_insert_sorted, \"g_queue_insert_sorted\", LIBRARY.GLIB); 1080 Linker.link(g_queue_push_head_link, \"g_queue_push_head_link\", LIBRARY.GLIB); 1081 Linker.link(g_queue_push_tail_link, \"g_queue_push_tail_link\", LIBRARY.GLIB); 1082 Linker.link(g_queue_push_nth_link, \"g_queue_push_nth_link\", LIBRARY.GLIB); 1083 Linker.link(g_queue_pop_head_link, \"g_queue_pop_head_link\", LIBRARY.GLIB); 1084 Linker.link(g_queue_pop_tail_link, \"g_queue_pop_tail_link\", LIBRARY.GLIB); 1085 Linker.link(g_queue_pop_nth_link, \"g_queue_pop_nth_link\", LIBRARY.GLIB); 1086 Linker.link(g_queue_peek_head_link, \"g_queue_peek_head_link\", LIBRARY.GLIB); 1087 Linker.link(g_queue_peek_tail_link, \"g_queue_peek_tail_link\", LIBRARY.GLIB); 1088 Linker.link(g_queue_peek_nth_link, \"g_queue_peek_nth_link\", LIBRARY.GLIB); 1089 Linker.link(g_queue_link_index, \"g_queue_link_index\", LIBRARY.GLIB); 1090 Linker.link(g_queue_unlink, \"g_queue_unlink\", LIBRARY.GLIB); 1091 Linker.link(g_queue_delete_link, \"g_queue_delete_link\", LIBRARY.GLIB); 1092 1093 // glib.Sequence 1094 1095 Linker.link(g_sequence_new, \"g_sequence_new\", LIBRARY.GLIB); 1096 Linker.link(g_sequence_free, \"g_sequence_free\", LIBRARY.GLIB); 1097 Linker.link(g_sequence_get_length, \"g_sequence_get_length\", LIBRARY.GLIB); 1098 Linker.link(g_sequence_foreach, \"g_sequence_foreach\", LIBRARY.GLIB); 1099 Linker.link(g_sequence_foreach_range, \"g_sequence_foreach_range\", LIBRARY.GLIB); 1100 Linker.link(g_sequence_sort, \"g_sequence_sort\", LIBRARY.GLIB); 1101 Linker.link(g_sequence_sort_iter, \"g_sequence_sort_iter\", LIBRARY.GLIB); 1102 Linker.link(g_sequence_get_begin_iter, \"g_sequence_get_begin_iter\", LIBRARY.GLIB); 1103 Linker.link(g_sequence_get_end_iter, \"g_sequence_get_end_iter\", LIBRARY.GLIB); 1104 Linker.link(g_sequence_get_iter_at_pos, \"g_sequence_get_iter_at_pos\", LIBRARY.GLIB); 1105 Linker.link(g_sequence_append, \"g_sequence_append\", LIBRARY.GLIB); 1106 Linker.link(g_sequence_prepend, \"g_sequence_prepend\", LIBRARY.GLIB); 1107 Linker.link(g_sequence_insert_before, \"g_sequence_insert_before\", LIBRARY.GLIB); 1108 Linker.link(g_sequence_move, \"g_sequence_move\", LIBRARY.GLIB); 1109 Linker.link(g_sequence_swap, \"g_sequence_swap\", LIBRARY.GLIB); 1110 Linker.link(g_sequence_insert_sorted, \"g_sequence_insert_sorted\", LIBRARY.GLIB); 1111 Linker.link(g_sequence_insert_sorted_iter, \"g_sequence_insert_sorted_iter\", LIBRARY.GLIB); 1112 Linker.link(g_sequence_sort_changed, \"g_sequence_sort_changed\", LIBRARY.GLIB); 1113 Linker.link(g_sequence_sort_changed_iter, \"g_sequence_sort_changed_iter\", LIBRARY.GLIB); 1114 Linker.link(g_sequence_remove, \"g_sequence_remove\", LIBRARY.GLIB); 1115 Linker.link(g_sequence_remove_range, \"g_sequence_remove_range\", LIBRARY.GLIB); 1116 Linker.link(g_sequence_move_range, \"g_sequence_move_range\", LIBRARY.GLIB); 1117 Linker.link(g_sequence_search, \"g_sequence_search\", LIBRARY.GLIB); 1118 Linker.link(g_sequence_search_iter, \"g_sequence_search_iter\", LIBRARY.GLIB); 1119 Linker.link(g_sequence_lookup, \"g_sequence_lookup\", LIBRARY.GLIB); 1120 Linker.link(g_sequence_lookup_iter, \"g_sequence_lookup_iter\", LIBRARY.GLIB); 1121 Linker.link(g_sequence_get, \"g_sequence_get\", LIBRARY.GLIB); 1122 Linker.link(g_sequence_set, \"g_sequence_set\", LIBRARY.GLIB); 1123 Linker.link(g_sequence_range_get_midpoint, \"g_sequence_range_get_midpoint\", LIBRARY.GLIB); 1124 1125 // glib.SequenceIter 1126 1127 Linker.link(g_sequence_iter_is_begin, \"g_sequence_iter_is_begin\", LIBRARY.GLIB); 1128 Linker.link(g_sequence_iter_is_end, \"g_sequence_iter_is_end\", LIBRARY.GLIB); 1129 Linker.link(g_sequence_iter_next, \"g_sequence_iter_next\", LIBRARY.GLIB); 1130 Linker.link(g_sequence_iter_prev, \"g_sequence_iter_prev\", LIBRARY.GLIB); 1131 Linker.link(g_sequence_iter_get_position, \"g_sequence_iter_get_position\", LIBRARY.GLIB); 1132 Linker.link(g_sequence_iter_move, \"g_sequence_iter_move\", LIBRARY.GLIB); 1133 Linker.link(g_sequence_iter_get_sequence, \"g_sequence_iter_get_sequence\", LIBRARY.GLIB); 1134 Linker.link(g_sequence_iter_compare, \"g_sequence_iter_compare\", LIBRARY.GLIB); 1135 1136 // glib.TrashStack 1137 1138 Linker.link(g_trash_stack_push, \"g_trash_stack_push\", LIBRARY.GLIB); 1139 Linker.link(g_trash_stack_pop, \"g_trash_stack_pop\", LIBRARY.GLIB); 1140 Linker.link(g_trash_stack_peek, \"g_trash_stack_peek\", LIBRARY.GLIB); 1141 Linker.link(g_trash_stack_height, \"g_trash_stack_height\", LIBRARY.GLIB); 1142 1143 // glib.HashTable 1144 1145 Linker.link(g_hash_table_new, \"g_hash_table_new\", LIBRARY.GLIB); 1146 Linker.link(g_hash_table_new_full, \"g_hash_table_new_full\", LIBRARY.GLIB); 1147 Linker.link(g_hash_table_insert, \"g_hash_table_insert\", LIBRARY.GLIB); 1148 Linker.link(g_hash_table_replace, \"g_hash_table_replace\", LIBRARY.GLIB); 1149 Linker.link(g_hash_table_size, \"g_hash_table_size\", LIBRARY.GLIB); 1150 Linker.link(g_hash_table_lookup, \"g_hash_table_lookup\", LIBRARY.GLIB); 1151 Linker.link(g_hash_table_lookup_extended, \"g_hash_table_lookup_extended\", LIBRARY.GLIB); 1152 Linker.link(g_hash_table_foreach, \"g_hash_table_foreach\", LIBRARY.GLIB); 1153 Linker.link(g_hash_table_find, \"g_hash_table_find\", LIBRARY.GLIB); 1154 Linker.link(g_hash_table_remove, \"g_hash_table_remove\", LIBRARY.GLIB); 1155 Linker.link(g_hash_table_steal, \"g_hash_table_steal\", LIBRARY.GLIB); 1156 Linker.link(g_hash_table_foreach_remove, \"g_hash_table_foreach_remove\", LIBRARY.GLIB); 1157 Linker.link(g_hash_table_foreach_steal, \"g_hash_table_foreach_steal\", LIBRARY.GLIB); 1158 Linker.link(g_hash_table_remove_all, \"g_hash_table_remove_all\", LIBRARY.GLIB); 1159 Linker.link(g_hash_table_steal_all, \"g_hash_table_steal_all\", LIBRARY.GLIB); 1160 Linker.link(g_hash_table_get_keys, \"g_hash_table_get_keys\", LIBRARY.GLIB); 1161 Linker.link(g_hash_table_get_values, \"g_hash_table_get_values\", LIBRARY.GLIB); 1162 Linker.link(g_hash_table_destroy, \"g_hash_table_destroy\", LIBRARY.GLIB); 1163 Linker.link(g_hash_table_ref, \"g_hash_table_ref\", LIBRARY.GLIB); 1164 Linker.link(g_hash_table_unref, \"g_hash_table_unref\", LIBRARY.GLIB); 1165 Linker.link(g_direct_equal, \"g_direct_equal\", LIBRARY.GLIB); 1166 Linker.link(g_direct_hash, \"g_direct_hash\", LIBRARY.GLIB); 1167 Linker.link(g_int_equal, \"g_int_equal\", LIBRARY.GLIB); 1168 Linker.link(g_int_hash, \"g_int_hash\", LIBRARY.GLIB); 1169 Linker.link(g_int64_equal, \"g_int64_equal\", LIBRARY.GLIB); 1170 Linker.link(g_int64_hash, \"g_int64_hash\", LIBRARY.GLIB); 1171 Linker.link(g_double_equal, \"g_double_equal\", LIBRARY.GLIB); 1172 Linker.link(g_double_hash, \"g_double_hash\", LIBRARY.GLIB); 1173 Linker.link(g_str_equal, \"g_str_equal\", LIBRARY.GLIB); 1174 Linker.link(g_str_hash, \"g_str_hash\", LIBRARY.GLIB); 1175 1176 // glib.HashTableIter 1177 1178 Linker.link(g_hash_table_iter_init, \"g_hash_table_iter_init\", LIBRARY.GLIB); 1179 Linker.link(g_hash_table_iter_next, \"g_hash_table_iter_next\", LIBRARY.GLIB); 1180 Linker.link(g_hash_table_iter_get_hash_table, \"g_hash_table_iter_get_hash_table\", LIBRARY.GLIB); 1181 Linker.link(g_hash_table_iter_remove, \"g_hash_table_iter_remove\", LIBRARY.GLIB); 1182 Linker.link(g_hash_table_iter_steal, \"g_hash_table_iter_steal\", LIBRARY.GLIB); 1183 1184 // glib.StringG 1185 1186 Linker.link(g_string_new, \"g_string_new\", LIBRARY.GLIB); 1187 Linker.link(g_string_new_len, \"g_string_new_len\", LIBRARY.GLIB); 1188 Linker.link(g_string_sized_new, \"g_string_sized_new\", LIBRARY.GLIB); 1189 Linker.link(g_string_assign, \"g_string_assign\", LIBRARY.GLIB); 1190 Linker.link(g_string_vprintf, \"g_string_vprintf\", LIBRARY.GLIB); 1191 Linker.link(g_string_append_vprintf, \"g_string_append_vprintf\", LIBRARY.GLIB); 1192 Linker.link(g_string_printf, \"g_string_printf\", LIBRARY.GLIB); 1193 Linker.link(g_string_append_printf, \"g_string_append_printf\", LIBRARY.GLIB); 1194 Linker.link(g_string_append, \"g_string_append\", LIBRARY.GLIB); 1195 Linker.link(g_string_append_c, \"g_string_append_c\", LIBRARY.GLIB); 1196 Linker.link(g_string_append_unichar, \"g_string_append_unichar\", LIBRARY.GLIB); 1197 Linker.link(g_string_append_len, \"g_string_append_len\", LIBRARY.GLIB); 1198 Linker.link(g_string_append_uri_escaped, \"g_string_append_uri_escaped\", LIBRARY.GLIB); 1199 Linker.link(g_string_prepend, \"g_string_prepend\", LIBRARY.GLIB); 1200 Linker.link(g_string_prepend_c, \"g_string_prepend_c\", LIBRARY.GLIB); 1201 Linker.link(g_string_prepend_unichar, \"g_string_prepend_unichar\", LIBRARY.GLIB); 1202 Linker.link(g_string_prepend_len, \"g_string_prepend_len\", LIBRARY.GLIB); 1203 Linker.link(g_string_insert, \"g_string_insert\", LIBRARY.GLIB); 1204 Linker.link(g_string_insert_c, \"g_string_insert_c\", LIBRARY.GLIB); 1205 Linker.link(g_string_insert_unichar, \"g_string_insert_unichar\", LIBRARY.GLIB); 1206 Linker.link(g_string_insert_len, \"g_string_insert_len\", LIBRARY.GLIB); 1207 Linker.link(g_string_overwrite, \"g_string_overwrite\", LIBRARY.GLIB); 1208 Linker.link(g_string_overwrite_len, \"g_string_overwrite_len\", LIBRARY.GLIB); 1209 Linker.link(g_string_erase, \"g_string_erase\", LIBRARY.GLIB); 1210 Linker.link(g_string_truncate, \"g_string_truncate\", LIBRARY.GLIB); 1211 Linker.link(g_string_set_size, \"g_string_set_size\", LIBRARY.GLIB); 1212 Linker.link(g_string_free, \"g_string_free\", LIBRARY.GLIB); 1213 Linker.link(g_string_up, \"g_string_up\", LIBRARY.GLIB); 1214 Linker.link(g_string_down, \"g_string_down\", LIBRARY.GLIB); 1215 Linker.link(g_string_hash, \"g_string_hash\", LIBRARY.GLIB); 1216 Linker.link(g_string_equal, \"g_string_equal\", LIBRARY.GLIB); 1217 1218 // glib.StringGChunk 1219 1220 Linker.link(g_string_chunk_new, \"g_string_chunk_new\", LIBRARY.GLIB); 1221 Linker.link(g_string_chunk_insert, \"g_string_chunk_insert\", LIBRARY.GLIB); 1222 Linker.link(g_string_chunk_insert_const, \"g_string_chunk_insert_const\", LIBRARY.GLIB); 1223 Linker.link(g_string_chunk_insert_len, \"g_string_chunk_insert_len\", LIBRARY.GLIB); 1224 Linker.link(g_string_chunk_clear, \"g_string_chunk_clear\", LIBRARY.GLIB); 1225 Linker.link(g_string_chunk_free, \"g_string_chunk_free\", LIBRARY.GLIB); 1226 1227 // glib.ArrayG 1228 1229 Linker.link(g_array_new, \"g_array_new\", LIBRARY.GLIB); 1230 Linker.link(g_array_sized_new, \"g_array_sized_new\", LIBRARY.GLIB); 1231 Linker.link(g_array_ref, \"g_array_ref\", LIBRARY.GLIB); 1232 Linker.link(g_array_unref, \"g_array_unref\", LIBRARY.GLIB); 1233 Linker.link(g_array_get_element_size, \"g_array_get_element_size\", LIBRARY.GLIB); 1234 Linker.link(g_array_append_vals, \"g_array_append_vals\", LIBRARY.GLIB); 1235 Linker.link(g_array_prepend_vals, \"g_array_prepend_vals\", LIBRARY.GLIB); 1236 Linker.link(g_array_insert_vals, \"g_array_insert_vals\", LIBRARY.GLIB); 1237 Linker.link(g_array_remove_index, \"g_array_remove_index\", LIBRARY.GLIB); 1238 Linker.link(g_array_remove_index_fast, \"g_array_remove_index_fast\", LIBRARY.GLIB); 1239 Linker.link(g_array_remove_range, \"g_array_remove_range\", LIBRARY.GLIB); 1240 Linker.link(g_array_sort, \"g_array_sort\", LIBRARY.GLIB); 1241 Linker.link(g_array_sort_with_data, \"g_array_sort_with_data\", LIBRARY.GLIB); 1242 Linker.link(g_array_set_size, \"g_array_set_size\", LIBRARY.GLIB); 1243 Linker.link(g_array_free, \"g_array_free\", LIBRARY.GLIB); 1244 1245 // glib.PtrArray 1246 1247 Linker.link(g_ptr_array_new, \"g_ptr_array_new\", LIBRARY.GLIB); 1248 Linker.link(g_ptr_array_sized_new, \"g_ptr_array_sized_new\", LIBRARY.GLIB); 1249 Linker.link(g_ptr_array_new_with_free_func, \"g_ptr_array_new_with_free_func\", LIBRARY.GLIB); 1250 Linker.link(g_ptr_array_set_free_func, \"g_ptr_array_set_free_func\", LIBRARY.GLIB); 1251 Linker.link(g_ptr_array_ref, \"g_ptr_array_ref\", LIBRARY.GLIB); 1252 Linker.link(g_ptr_array_unref, \"g_ptr_array_unref\", LIBRARY.GLIB); 1253 Linker.link(g_ptr_array_add, \"g_ptr_array_add\", LIBRARY.GLIB); 1254 Linker.link(g_ptr_array_remove, \"g_ptr_array_remove\", LIBRARY.GLIB); 1255 Linker.link(g_ptr_array_remove_index, \"g_ptr_array_remove_index\", LIBRARY.GLIB); 1256 Linker.link(g_ptr_array_remove_fast, \"g_ptr_array_remove_fast\", LIBRARY.GLIB); 1257 Linker.link(g_ptr_array_remove_index_fast, \"g_ptr_array_remove_index_fast\", LIBRARY.GLIB); 1258 Linker.link(g_ptr_array_remove_range, \"g_ptr_array_remove_range\", LIBRARY.GLIB); 1259 Linker.link(g_ptr_array_sort, \"g_ptr_array_sort\", LIBRARY.GLIB); 1260 Linker.link(g_ptr_array_sort_with_data, \"g_ptr_array_sort_with_data\", LIBRARY.GLIB); 1261 Linker.link(g_ptr_array_set_size, \"g_ptr_array_set_size\", LIBRARY.GLIB); 1262 Linker.link(g_ptr_array_free, \"g_ptr_array_free\", LIBRARY.GLIB); 1263 Linker.link(g_ptr_array_foreach, \"g_ptr_array_foreach\", LIBRARY.GLIB); 1264 1265 // glib.ByteArray 1266 1267 Linker.link(g_byte_array_new, \"g_byte_array_new\", LIBRARY.GLIB); 1268 Linker.link(g_byte_array_sized_new, \"g_byte_array_sized_new\", LIBRARY.GLIB); 1269 Linker.link(g_byte_array_ref, \"g_byte_array_ref\", LIBRARY.GLIB); 1270 Linker.link(g_byte_array_unref, \"g_byte_array_unref\", LIBRARY.GLIB); 1271 Linker.link(g_byte_array_append, \"g_byte_array_append\", LIBRARY.GLIB); 1272 Linker.link(g_byte_array_prepend, \"g_byte_array_prepend\", LIBRARY.GLIB); 1273 Linker.link(g_byte_array_remove_index, \"g_byte_array_remove_index\", LIBRARY.GLIB); 1274 Linker.link(g_byte_array_remove_index_fast, \"g_byte_array_remove_index_fast\", LIBRARY.GLIB); 1275 Linker.link(g_byte_array_remove_range, \"g_byte_array_remove_range\", LIBRARY.GLIB); 1276 Linker.link(g_byte_array_sort, \"g_byte_array_sort\", LIBRARY.GLIB); 1277 Linker.link(g_byte_array_sort_with_data, \"g_byte_array_sort_with_data\", LIBRARY.GLIB); 1278 Linker.link(g_byte_array_set_size, \"g_byte_array_set_size\", LIBRARY.GLIB); 1279 Linker.link(g_byte_array_free, \"g_byte_array_free\", LIBRARY.GLIB); 1280 1281 // glib.BBTree 1282 1283 Linker.link(g_tree_new, \"g_tree_new\", LIBRARY.GLIB); 1284 Linker.link(g_tree_ref, \"g_tree_ref\", LIBRARY.GLIB); 1285 Linker.link(g_tree_unref, \"g_tree_unref\", LIBRARY.GLIB); 1286 Linker.link(g_tree_new_with_data, \"g_tree_new_with_data\", LIBRARY.GLIB); 1287 Linker.link(g_tree_new_full, \"g_tree_new_full\", LIBRARY.GLIB); 1288 Linker.link(g_tree_insert, \"g_tree_insert\", LIBRARY.GLIB); 1289 Linker.link(g_tree_replace, \"g_tree_replace\", LIBRARY.GLIB); 1290 Linker.link(g_tree_nnodes, \"g_tree_nnodes\", LIBRARY.GLIB); 1291 Linker.link(g_tree_height, \"g_tree_height\", LIBRARY.GLIB); 1292 Linker.link(g_tree_lookup, \"g_tree_lookup\", LIBRARY.GLIB); 1293 Linker.link(g_tree_lookup_extended, \"g_tree_lookup_extended\", LIBRARY.GLIB); 1294 Linker.link(g_tree_foreach, \"g_tree_foreach\", LIBRARY.GLIB); 1295 Linker.link(g_tree_traverse, \"g_tree_traverse\", LIBRARY.GLIB); 1296 Linker.link(g_tree_search, \"g_tree_search\", LIBRARY.GLIB); 1297 Linker.link(g_tree_remove, \"g_tree_remove\", LIBRARY.GLIB); 1298 Linker.link(g_tree_steal, \"g_tree_steal\", LIBRARY.GLIB); 1299 Linker.link(g_tree_destroy, \"g_tree_destroy\", LIBRARY.GLIB); 1300 1301 // glib.Node 1302 1303 Linker.link(g_node_new, \"g_node_new\", LIBRARY.GLIB); 1304 Linker.link(g_node_copy, \"g_node_copy\", LIBRARY.GLIB); 1305 Linker.link(g_node_copy_deep, \"g_node_copy_deep\", LIBRARY.GLIB); 1306 Linker.link(g_node_insert, \"g_node_insert\", LIBRARY.GLIB); 1307 Linker.link(g_node_insert_before, \"g_node_insert_before\", LIBRARY.GLIB); 1308 Linker.link(g_node_insert_after, \"g_node_insert_after\", LIBRARY.GLIB); 1309 Linker.link(g_node_prepend, \"g_node_prepend\", LIBRARY.GLIB); 1310 Linker.link(g_node_reverse_children, \"g_node_reverse_children\", LIBRARY.GLIB); 1311 Linker.link(g_node_traverse, \"g_node_traverse\", LIBRARY.GLIB); 1312 Linker.link(g_node_children_foreach, \"g_node_children_foreach\", LIBRARY.GLIB); 1313 Linker.link(g_node_get_root, \"g_node_get_root\", LIBRARY.GLIB); 1314 Linker.link(g_node_find, \"g_node_find\", LIBRARY.GLIB); 1315 Linker.link(g_node_find_child, \"g_node_find_child\", LIBRARY.GLIB); 1316 Linker.link(g_node_child_index, \"g_node_child_index\", LIBRARY.GLIB); 1317 Linker.link(g_node_child_position, \"g_node_child_position\", LIBRARY.GLIB); 1318 Linker.link(g_node_last_child, \"g_node_last_child\", LIBRARY.GLIB); 1319 Linker.link(g_node_nth_child, \"g_node_nth_child\", LIBRARY.GLIB); 1320 Linker.link(g_node_first_sibling, \"g_node_first_sibling\", LIBRARY.GLIB); 1321 Linker.link(g_node_last_sibling, \"g_node_last_sibling\", LIBRARY.GLIB); 1322 Linker.link(g_node_depth, \"g_node_depth\", LIBRARY.GLIB); 1323 Linker.link(g_node_n_nodes, \"g_node_n_nodes\", LIBRARY.GLIB); 1324 Linker.link(g_node_n_children, \"g_node_n_children\", LIBRARY.GLIB); 1325 Linker.link(g_node_is_ancestor, \"g_node_is_ancestor\", LIBRARY.GLIB); 1326 Linker.link(g_node_max_height, \"g_node_max_height\", LIBRARY.GLIB); 1327 Linker.link(g_node_unlink, \"g_node_unlink\", LIBRARY.GLIB); 1328 Linker.link(g_node_destroy, \"g_node_destroy\", LIBRARY.GLIB); 1329 Linker.link(g_node_push_allocator, \"g_node_push_allocator\", LIBRARY.GLIB); 1330 Linker.link(g_node_pop_allocator, \"g_node_pop_allocator\", LIBRARY.GLIB); 1331 1332 // glib.Quark 1333 1334 Linker.link(g_quark_from_string, \"g_quark_from_string\", LIBRARY.GLIB); 1335 Linker.link(g_quark_from_static_string, \"g_quark_from_static_string\", LIBRARY.GLIB); 1336 Linker.link(g_quark_to_string, \"g_quark_to_string\", LIBRARY.GLIB); 1337 Linker.link(g_quark_try_string, \"g_quark_try_string\", LIBRARY.GLIB); 1338 Linker.link(g_intern_string, \"g_intern_string\", LIBRARY.GLIB); 1339 Linker.link(g_intern_static_string, \"g_intern_static_string\", LIBRARY.GLIB); 1340 1341 // glib.DataList 1342 1343 Linker.link(g_datalist_init, \"g_datalist_init\", LIBRARY.GLIB); 1344 Linker.link(g_datalist_id_set_data_full, \"g_datalist_id_set_data_full\", LIBRARY.GLIB); 1345 Linker.link(g_datalist_id_get_data, \"g_datalist_id_get_data\", LIBRARY.GLIB); 1346 Linker.link(g_datalist_id_remove_no_notify, \"g_datalist_id_remove_no_notify\", LIBRARY.GLIB); 1347 Linker.link(g_datalist_foreach, \"g_datalist_foreach\", LIBRARY.GLIB); 1348 Linker.link(g_datalist_clear, \"g_datalist_clear\", LIBRARY.GLIB); 1349 Linker.link(g_datalist_set_flags, \"g_datalist_set_flags\", LIBRARY.GLIB); 1350 Linker.link(g_datalist_unset_flags, \"g_datalist_unset_flags\", LIBRARY.GLIB); 1351 Linker.link(g_datalist_get_flags, \"g_datalist_get_flags\", LIBRARY.GLIB); 1352 1353 // glib.Dataset 1354 1355 Linker.link(g_dataset_id_set_data_full, \"g_dataset_id_set_data_full\", LIBRARY.GLIB); 1356 Linker.link(g_dataset_id_get_data, \"g_dataset_id_get_data\", LIBRARY.GLIB); 1357 Linker.link(g_dataset_id_remove_no_notify, \"g_dataset_id_remove_no_notify\", LIBRARY.GLIB); 1358 Linker.link(g_dataset_foreach, \"g_dataset_foreach\", LIBRARY.GLIB); 1359 Linker.link(g_dataset_destroy, \"g_dataset_destroy\", LIBRARY.GLIB); 1360 1361 // glib.Relation 1362 1363 Linker.link(g_relation_new, \"g_relation_new\", LIBRARY.GLIB); 1364 Linker.link(g_relation_index, \"g_relation_index\", LIBRARY.GLIB); 1365 Linker.link(g_relation_insert, \"g_relation_insert\", LIBRARY.GLIB); 1366 Linker.link(g_relation_exists, \"g_relation_exists\", LIBRARY.GLIB); 1367 Linker.link(g_relation_count, \"g_relation_count\", LIBRARY.GLIB); 1368 Linker.link(g_relation_select, \"g_relation_select\", LIBRARY.GLIB); 1369 Linker.link(g_relation_delete, \"g_relation_delete\", LIBRARY.GLIB); 1370 Linker.link(g_relation_destroy, \"g_relation_destroy\", LIBRARY.GLIB); 1371 Linker.link(g_relation_print, \"g_relation_print\", LIBRARY.GLIB); 1372 1373 // glib.Tuples 1374 1375 Linker.link(g_tuples_destroy, \"g_tuples_destroy\", LIBRARY.GLIB); 1376 Linker.link(g_tuples_index, \"g_tuples_index\", LIBRARY.GLIB); 1377 1378 // glib.Cache 1379 1380 Linker.link(g_cache_new, \"g_cache_new\", LIBRARY.GLIB); 1381 Linker.link(g_cache_insert, \"g_cache_insert\", LIBRARY.GLIB); 1382 Linker.link(g_cache_remove, \"g_cache_remove\", LIBRARY.GLIB); 1383 Linker.link(g_cache_destroy, \"g_cache_destroy\", LIBRARY.GLIB); 1384 Linker.link(g_cache_key_foreach, \"g_cache_key_foreach\", LIBRARY.GLIB); 1385 Linker.link(g_cache_value_foreach, \"g_cache_value_foreach\", LIBRARY.GLIB); 1386 1387 // glib.Allocator 1388 1389 Linker.link(g_allocator_new, \"g_allocator_new\", LIBRARY.GLIB); 1390 Linker.link(g_allocator_free, \"g_allocator_free\", LIBRARY.GLIB); 1391 1392 // glib.VariantType 1393 1394 Linker.link(g_variant_type_free, \"g_variant_type_free\", LIBRARY.GLIB); 1395 Linker.link(g_variant_type_copy, \"g_variant_type_copy\", LIBRARY.GLIB); 1396 Linker.link(g_variant_type_new, \"g_variant_type_new\", LIBRARY.GLIB); 1397 Linker.link(g_variant_type_string_is_valid, \"g_variant_type_string_is_valid\", LIBRARY.GLIB); 1398 Linker.link(g_variant_type_string_scan, \"g_variant_type_string_scan\", LIBRARY.GLIB); 1399 Linker.link(g_variant_type_get_string_length, \"g_variant_type_get_string_length\", LIBRARY.GLIB); 1400 Linker.link(g_variant_type_peek_string, \"g_variant_type_peek_string\", LIBRARY.GLIB); 1401 Linker.link(g_variant_type_dup_string, \"g_variant_type_dup_string\", LIBRARY.GLIB); 1402 Linker.link(g_variant_type_is_definite, \"g_variant_type_is_definite\", LIBRARY.GLIB); 1403 Linker.link(g_variant_type_is_container, \"g_variant_type_is_container\", LIBRARY.GLIB); 1404 Linker.link(g_variant_type_is_basic, \"g_variant_type_is_basic\", LIBRARY.GLIB); 1405 Linker.link(g_variant_type_is_maybe, \"g_variant_type_is_maybe\", LIBRARY.GLIB); 1406 Linker.link(g_variant_type_is_array, \"g_variant_type_is_array\", LIBRARY.GLIB); 1407 Linker.link(g_variant_type_is_tuple, \"g_variant_type_is_tuple\", LIBRARY.GLIB); 1408 Linker.link(g_variant_type_is_dict_entry, \"g_variant_type_is_dict_entry\", LIBRARY.GLIB); 1409 Linker.link(g_variant_type_is_variant, \"g_variant_type_is_variant\", LIBRARY.GLIB); 1410 Linker.link(g_variant_type_hash, \"g_variant_type_hash\", LIBRARY.GLIB); 1411 Linker.link(g_variant_type_equal, \"g_variant_type_equal\", LIBRARY.GLIB); 1412 Linker.link(g_variant_type_is_subtype_of, \"g_variant_type_is_subtype_of\", LIBRARY.GLIB); 1413 Linker.link(g_variant_type_new_maybe, \"g_variant_type_new_maybe\", LIBRARY.GLIB); 1414 Linker.link(g_variant_type_new_array, \"g_variant_type_new_array\", LIBRARY.GLIB); 1415 Linker.link(g_variant_type_new_tuple, \"g_variant_type_new_tuple\", LIBRARY.GLIB); 1416 Linker.link(g_variant_type_new_dict_entry, \"g_variant_type_new_dict_entry\", LIBRARY.GLIB); 1417 Linker.link(g_variant_type_element, \"g_variant_type_element\", LIBRARY.GLIB); 1418 Linker.link(g_variant_type_n_items, \"g_variant_type_n_items\", LIBRARY.GLIB); 1419 Linker.link(g_variant_type_first, \"g_variant_type_first\", LIBRARY.GLIB); 1420 Linker.link(g_variant_type_next, \"g_variant_type_next\", LIBRARY.GLIB); 1421 Linker.link(g_variant_type_key, \"g_variant_type_key\", LIBRARY.GLIB); 1422 Linker.link(g_variant_type_value, \"g_variant_type_value\", LIBRARY.GLIB); 1423 1424 // glib.Variant 1425 1426 Linker.link(g_variant_unref, \"g_variant_unref\", LIBRARY.GLIB); 1427 Linker.link(g_variant_ref, \"g_variant_ref\", LIBRARY.GLIB); 1428 Linker.link(g_variant_ref_sink, \"g_variant_ref_sink\", LIBRARY.GLIB); 1429 Linker.link(g_variant_is_floating, \"g_variant_is_floating\", LIBRARY.GLIB); 1430 Linker.link(g_variant_get_type, \"g_variant_get_type\", LIBRARY.GLIB); 1431 Linker.link(g_variant_get_type_string, \"g_variant_get_type_string\", LIBRARY.GLIB); 1432 Linker.link(g_variant_is_of_type, \"g_variant_is_of_type\", LIBRARY.GLIB); 1433 Linker.link(g_variant_is_container, \"g_variant_is_container\", LIBRARY.GLIB); 1434 Linker.link(g_variant_compare, \"g_variant_compare\", LIBRARY.GLIB); 1435 Linker.link(g_variant_classify, \"g_variant_classify\", LIBRARY.GLIB); 1436 Linker.link(g_variant_get, \"g_variant_get\", LIBRARY.GLIB); 1437 Linker.link(g_variant_get_va, \"g_variant_get_va\", LIBRARY.GLIB); 1438 Linker.link(g_variant_new, \"g_variant_new\", LIBRARY.GLIB); 1439 Linker.link(g_variant_new_va, \"g_variant_new_va\", LIBRARY.GLIB); 1440 Linker.link(g_variant_new_boolean, \"g_variant_new_boolean\", LIBRARY.GLIB); 1441 Linker.link(g_variant_new_byte, \"g_variant_new_byte\", LIBRARY.GLIB); 1442 Linker.link(g_variant_new_int16, \"g_variant_new_int16\", LIBRARY.GLIB); 1443 Linker.link(g_variant_new_uint16, \"g_variant_new_uint16\", LIBRARY.GLIB); 1444 Linker.link(g_variant_new_int32, \"g_variant_new_int32\", LIBRARY.GLIB); 1445 Linker.link(g_variant_new_uint32, \"g_variant_new_uint32\", LIBRARY.GLIB); 1446 Linker.link(g_variant_new_int64, \"g_variant_new_int64\", LIBRARY.GLIB); 1447 Linker.link(g_variant_new_uint64, \"g_variant_new_uint64\", LIBRARY.GLIB); 1448 Linker.link(g_variant_new_handle, \"g_variant_new_handle\", LIBRARY.GLIB); 1449 Linker.link(g_variant_new_double, \"g_variant_new_double\", LIBRARY.GLIB); 1450 Linker.link(g_variant_new_string, \"g_variant_new_string\", LIBRARY.GLIB); 1451 Linker.link(g_variant_new_object_path, \"g_variant_new_object_path\", LIBRARY.GLIB); 1452 Linker.link(g_variant_is_object_path, \"g_variant_is_object_path\", LIBRARY.GLIB); 1453 Linker.link(g_variant_new_signature, \"g_variant_new_signature\", LIBRARY.GLIB); 1454 Linker.link(g_variant_is_signature, \"g_variant_is_signature\", LIBRARY.GLIB); 1455 Linker.link(g_variant_new_variant, \"g_variant_new_variant\", LIBRARY.GLIB); 1456 Linker.link(g_variant_new_strv, \"g_variant_new_strv\", LIBRARY.GLIB); 1457 Linker.link(g_variant_new_bytestring, \"g_variant_new_bytestring\", LIBRARY.GLIB); 1458 Linker.link(g_variant_new_bytestring_array, \"g_variant_new_bytestring_array\", LIBRARY.GLIB); 1459 Linker.link(g_variant_get_boolean, \"g_variant_get_boolean\", LIBRARY.GLIB); 1460 Linker.link(g_variant_get_byte, \"g_variant_get_byte\", LIBRARY.GLIB); 1461 Linker.link(g_variant_get_int16, \"g_variant_get_int16\", LIBRARY.GLIB); 1462 Linker.link(g_variant_get_uint16, \"g_variant_get_uint16\", LIBRARY.GLIB); 1463 Linker.link(g_variant_get_int32, \"g_variant_get_int32\", LIBRARY.GLIB); 1464 Linker.link(g_variant_get_uint32, \"g_variant_get_uint32\", LIBRARY.GLIB); 1465 Linker.link(g_variant_get_int64, \"g_variant_get_int64\", LIBRARY.GLIB); 1466 Linker.link(g_variant_get_uint64, \"g_variant_get_uint64\", LIBRARY.GLIB); 1467 Linker.link(g_variant_get_handle, \"g_variant_get_handle\", LIBRARY.GLIB); 1468 Linker.link(g_variant_get_double, \"g_variant_get_double\", LIBRARY.GLIB); 1469 Linker.link(g_variant_get_string, \"g_variant_get_string\", LIBRARY.GLIB); 1470 Linker.link(g_variant_dup_string, \"g_variant_dup_string\", LIBRARY.GLIB); 1471 Linker.link(g_variant_get_variant, \"g_variant_get_variant\", LIBRARY.GLIB); 1472 Linker.link(g_variant_get_strv, \"g_variant_get_strv\", LIBRARY.GLIB); 1473 Linker.link(g_variant_dup_strv, \"g_variant_dup_strv\", LIBRARY.GLIB); 1474 Linker.link(g_variant_get_bytestring, \"g_variant_get_bytestring\", LIBRARY.GLIB); 1475 Linker.link(g_variant_dup_bytestring, \"g_variant_dup_bytestring\", LIBRARY.GLIB); 1476 Linker.link(g_variant_get_bytestring_array, \"g_variant_get_bytestring_array\", LIBRARY.GLIB); 1477 Linker.link(g_variant_dup_bytestring_array, \"g_variant_dup_bytestring_array\", LIBRARY.GLIB); 1478 Linker.link(g_variant_new_maybe, \"g_variant_new_maybe\", LIBRARY.GLIB); 1479 Linker.link(g_variant_new_array, \"g_variant_new_array\", LIBRARY.GLIB); 1480 Linker.link(g_variant_new_tuple, \"g_variant_new_tuple\", LIBRARY.GLIB); 1481 Linker.link(g_variant_new_dict_entry, \"g_variant_new_dict_entry\", LIBRARY.GLIB); 1482 Linker.link(g_variant_get_maybe, \"g_variant_get_maybe\", LIBRARY.GLIB); 1483 Linker.link(g_variant_n_children, \"g_variant_n_children\", LIBRARY.GLIB); 1484 Linker.link(g_variant_get_child_value, \"g_variant_get_child_value\", LIBRARY.GLIB); 1485 Linker.link(g_variant_get_child, \"g_variant_get_child\", LIBRARY.GLIB); 1486 Linker.link(g_variant_lookup_value, \"g_variant_lookup_value\", LIBRARY.GLIB); 1487 Linker.link(g_variant_lookup, \"g_variant_lookup\", LIBRARY.GLIB); 1488 Linker.link(g_variant_get_fixed_array, \"g_variant_get_fixed_array\", LIBRARY.GLIB); 1489 Linker.link(g_variant_get_size, \"g_variant_get_size\", LIBRARY.GLIB); 1490 Linker.link(g_variant_get_data, \"g_variant_get_data\", LIBRARY.GLIB); 1491 Linker.link(g_variant_store, \"g_variant_store\", LIBRARY.GLIB); 1492 Linker.link(g_variant_new_from_data, \"g_variant_new_from_data\", LIBRARY.GLIB); 1493 Linker.link(g_variant_byteswap, \"g_variant_byteswap\", LIBRARY.GLIB); 1494 Linker.link(g_variant_get_normal_form, \"g_variant_get_normal_form\", LIBRARY.GLIB); 1495 Linker.link(g_variant_is_normal_form, \"g_variant_is_normal_form\", LIBRARY.GLIB); 1496 Linker.link(g_variant_hash, \"g_variant_hash\", LIBRARY.GLIB); 1497 Linker.link(g_variant_equal, \"g_variant_equal\", LIBRARY.GLIB); 1498 Linker.link(g_variant_print, \"g_variant_print\", LIBRARY.GLIB); 1499 Linker.link(g_variant_print_string, \"g_variant_print_string\", LIBRARY.GLIB); 1500 Linker.link(g_variant_parse, \"g_variant_parse\", LIBRARY.GLIB); 1501 Linker.link(g_variant_new_parsed_va, \"g_variant_new_parsed_va\", LIBRARY.GLIB); 1502 Linker.link(g_variant_new_parsed, \"g_variant_new_parsed\", LIBRARY.GLIB); 1503 1504 // glib.VariantIter 1505 1506 Linker.link(g_variant_iter_copy, \"g_variant_iter_copy\", LIBRARY.GLIB); 1507 Linker.link(g_variant_iter_free, \"g_variant_iter_free\", LIBRARY.GLIB); 1508 Linker.link(g_variant_iter_init, \"g_variant_iter_init\", LIBRARY.GLIB); 1509 Linker.link(g_variant_iter_n_children, \"g_variant_iter_n_children\", LIBRARY.GLIB); 1510 Linker.link(g_variant_iter_new, \"g_variant_iter_new\", LIBRARY.GLIB); 1511 Linker.link(g_variant_iter_next_value, \"g_variant_iter_next_value\", LIBRARY.GLIB); 1512 Linker.link(g_variant_iter_next, \"g_variant_iter_next\", LIBRARY.GLIB); 1513 Linker.link(g_variant_iter_loop, \"g_variant_iter_loop\", LIBRARY.GLIB); 1514 1515 // glib.VariantBuilder 1516 1517 Linker.link(g_variant_builder_unref, \"g_variant_builder_unref\", LIBRARY.GLIB); 1518 Linker.link(g_variant_builder_ref, \"g_variant_builder_ref\", LIBRARY.GLIB); 1519 Linker.link(g_variant_builder_new, \"g_variant_builder_new\", LIBRARY.GLIB); 1520 Linker.link(g_variant_builder_init, \"g_variant_builder_init\", LIBRARY.GLIB); 1521 Linker.link(g_variant_builder_clear, \"g_variant_builder_clear\", LIBRARY.GLIB); 1522 Linker.link(g_variant_builder_add_value, \"g_variant_builder_add_value\", LIBRARY.GLIB); 1523 Linker.link(g_variant_builder_add, \"g_variant_builder_add\", LIBRARY.GLIB); 1524 Linker.link(g_variant_builder_add_parsed, \"g_variant_builder_add_parsed\", LIBRARY.GLIB); 1525 Linker.link(g_variant_builder_end, \"g_variant_builder_end\", LIBRARY.GLIB); 1526 Linker.link(g_variant_builder_open, \"g_variant_builder_open\", LIBRARY.GLIB); 1527 Linker.link(g_variant_builder_close, \"g_variant_builder_close\", LIBRARY.GLIB); 1528 }"); 1529 1530 mixin( gshared ~"extern(C) 1531 { 1532 // glib.Version 1533 1534 gchar* function(guint requiredMajor, guint requiredMinor, guint requiredMicro) c_glib_check_version; 1535 1536 // glib.Atomic 1537 1538 gint function(gint* atomic) c_g_atomic_int_get; 1539 void function(gint* atomic, gint newval) c_g_atomic_int_set; 1540 void function(gint* atomic, gint val) c_g_atomic_int_add; 1541 gint function(gint* atomic, gint val) c_g_atomic_int_exchange_and_add; 1542 gboolean function(gint* atomic, gint oldval, gint newval) c_g_atomic_int_compare_and_exchange; 1543 gpointer function(void** atomic) c_g_atomic_pointer_get; 1544 void function(void** atomic, void* newval) c_g_atomic_pointer_set; 1545 gboolean function(void** atomic, void* oldval, void* newval) c_g_atomic_pointer_compare_and_exchange; 1546 void function(gint* atomic) c_g_atomic_int_inc; 1547 gboolean function(gint* atomic) c_g_atomic_int_dec_and_test; 1548 1549 // glib.MainLoop 1550 1551 GMainLoop* function(GMainContext* context, gboolean isRunning) c_g_main_loop_new; 1552 GMainLoop* function(GMainLoop* loop) c_g_main_loop_ref; 1553 void function(GMainLoop* loop) c_g_main_loop_unref; 1554 void function(GMainLoop* loop) c_g_main_loop_run; 1555 void function(GMainLoop* loop) c_g_main_loop_quit; 1556 gboolean function(GMainLoop* loop) c_g_main_loop_is_running; 1557 GMainContext* function(GMainLoop* loop) c_g_main_loop_get_context; 1558 gint function() c_g_main_depth; 1559 GSource* function() c_g_main_current_source; 1560 gint function(GPollFD* fds, guint nfds, gint timeout) c_g_poll; 1561 1562 // glib.MainContext 1563 1564 GMainContext* function() c_g_main_context_new; 1565 GMainContext* function(GMainContext* context) c_g_main_context_ref; 1566 void function(GMainContext* context) c_g_main_context_unref; 1567 GMainContext* function() c_g_main_context_default; 1568 gboolean function(GMainContext* context, gboolean mayBlock) c_g_main_context_iteration; 1569 gboolean function(GMainContext* context) c_g_main_context_pending; 1570 GSource* function(GMainContext* context, guint sourceId) c_g_main_context_find_source_by_id; 1571 GSource* function(GMainContext* context, void* userData) c_g_main_context_find_source_by_user_data; 1572 GSource* function(GMainContext* context, GSourceFuncs* funcs, void* userData) c_g_main_context_find_source_by_funcs_user_data; 1573 void function(GMainContext* context) c_g_main_context_wakeup; 1574 gboolean function(GMainContext* context) c_g_main_context_acquire; 1575 void function(GMainContext* context) c_g_main_context_release; 1576 gboolean function(GMainContext* context) c_g_main_context_is_owner; 1577 gboolean function(GMainContext* context, GCond* cond, GMutex* mutex) c_g_main_context_wait; 1578 gboolean function(GMainContext* context, gint* priority) c_g_main_context_prepare; 1579 gint function(GMainContext* context, gint maxPriority, gint* timeout, GPollFD* fds, gint nFds) c_g_main_context_query; 1580 gint function(GMainContext* context, gint maxPriority, GPollFD* fds, gint nFds) c_g_main_context_check; 1581 void function(GMainContext* context) c_g_main_context_dispatch; 1582 void function(GMainContext* context, GPollFunc func) c_g_main_context_set_poll_func; 1583 GPollFunc function(GMainContext* context) c_g_main_context_get_poll_func; 1584 void function(GMainContext* context, GPollFD* fd, gint priority) c_g_main_context_add_poll; 1585 void function(GMainContext* context, GPollFD* fd) c_g_main_context_remove_poll; 1586 void function(GMainContext* context, GSourceFunc funct, void* data) c_g_main_context_invoke; 1587 void function(GMainContext* context, gint priority, GSourceFunc funct, void* data, GDestroyNotify notify) c_g_main_context_invoke_full; 1588 GMainContext* function() c_g_main_context_get_thread_default; 1589 void function(GMainContext* context) c_g_main_context_push_thread_default; 1590 void function(GMainContext* context) c_g_main_context_pop_thread_default; 1591 1592 // glib.Timeout 1593 1594 GSource* function(guint interval) c_g_timeout_source_new; 1595 GSource* function(guint interval) c_g_timeout_source_new_seconds; 1596 guint function(guint interval, GSourceFunc funct, void* data) c_g_timeout_add; 1597 guint function(gint priority, guint interval, GSourceFunc funct, void* data, GDestroyNotify notify) c_g_timeout_add_full; 1598 guint function(guint interval, GSourceFunc funct, void* data) c_g_timeout_add_seconds; 1599 guint function(gint priority, guint interval, GSourceFunc funct, void* data, GDestroyNotify notify) c_g_timeout_add_seconds_full; 1600 1601 // glib.Idle 1602 1603 GSource* function() c_g_idle_source_new; 1604 guint function(GSourceFunc funct, void* data) c_g_idle_add; 1605 guint function(gint priority, GSourceFunc funct, void* data, GDestroyNotify notify) c_g_idle_add_full; 1606 gboolean function(void* data) c_g_idle_remove_by_data; 1607 1608 // glib.Child 1609 1610 GSource* function(GPid pid) c_g_child_watch_source_new; 1611 guint function(GPid pid, GChildWatchFunc funct, void* data) c_g_child_watch_add; 1612 guint function(gint priority, GPid pid, GChildWatchFunc funct, void* data, GDestroyNotify notify) c_g_child_watch_add_full; 1613 1614 // glib.Source 1615 1616 GSource* function(GSourceFuncs* sourceFuncs, guint structSize) c_g_source_new; 1617 GSource* function(GSource* source) c_g_source_ref; 1618 void function(GSource* source) c_g_source_unref; 1619 void function(GSource* source, GSourceFuncs* funcs) c_g_source_set_funcs; 1620 guint function(GSource* source, GMainContext* context) c_g_source_attach; 1621 void function(GSource* source) c_g_source_destroy; 1622 gboolean function(GSource* source) c_g_source_is_destroyed; 1623 void function(GSource* source, gint priority) c_g_source_set_priority; 1624 gint function(GSource* source) c_g_source_get_priority; 1625 void function(GSource* source, gboolean canRecurse) c_g_source_set_can_recurse; 1626 gboolean function(GSource* source) c_g_source_get_can_recurse; 1627 guint function(GSource* source) c_g_source_get_id; 1628 char* function(GSource* source) c_g_source_get_name; 1629 void function(GSource* source, char* name) c_g_source_set_name; 1630 void function(guint tag, char* name) c_g_source_set_name_by_id; 1631 GMainContext* function(GSource* source) c_g_source_get_context; 1632 void function(GSource* source, GSourceFunc func, void* data, GDestroyNotify notify) c_g_source_set_callback; 1633 void function(GSource* source, void* callbackData, GSourceCallbackFuncs* callbackFuncs) c_g_source_set_callback_indirect; 1634 void function(GSource* source, GPollFD* fd) c_g_source_add_poll; 1635 void function(GSource* source, GPollFD* fd) c_g_source_remove_poll; 1636 void function(GSource* source, GSource* childSource) c_g_source_add_child_source; 1637 void function(GSource* source, GSource* childSource) c_g_source_remove_child_source; 1638 gint64 function(GSource* source) c_g_source_get_time; 1639 void function(GSource* source, GTimeVal* timeval) c_g_source_get_current_time; 1640 gboolean function(guint tag) c_g_source_remove; 1641 gboolean function(GSourceFuncs* funcs, void* userData) c_g_source_remove_by_funcs_user_data; 1642 gboolean function(void* userData) c_g_source_remove_by_user_data; 1643 1644 // glib.ThreadPool 1645 1646 GThreadPool* function(GFunc func, void* userData, gint maxThreads, gboolean exclusive, GError** error) c_g_thread_pool_new; 1647 void function(GThreadPool* pool, void* data, GError** error) c_g_thread_pool_push; 1648 void function(GThreadPool* pool, gint maxThreads, GError** error) c_g_thread_pool_set_max_threads; 1649 gint function(GThreadPool* pool) c_g_thread_pool_get_max_threads; 1650 guint function(GThreadPool* pool) c_g_thread_pool_get_num_threads; 1651 guint function(GThreadPool* pool) c_g_thread_pool_unprocessed; 1652 void function(GThreadPool* pool, gboolean immediate, gboolean wait) c_g_thread_pool_free; 1653 void function(gint maxThreads) c_g_thread_pool_set_max_unused_threads; 1654 gint function() c_g_thread_pool_get_max_unused_threads; 1655 guint function() c_g_thread_pool_get_num_unused_threads; 1656 void function() c_g_thread_pool_stop_unused_threads; 1657 void function(GThreadPool* pool, GCompareDataFunc func, void* userData) c_g_thread_pool_set_sort_function; 1658 void function(guint interval) c_g_thread_pool_set_max_idle_time; 1659 guint function() c_g_thread_pool_get_max_idle_time; 1660 1661 // glib.AsyncQueue 1662 1663 GAsyncQueue* function() c_g_async_queue_new; 1664 GAsyncQueue* function(GDestroyNotify itemFreeFunc) c_g_async_queue_new_full; 1665 GAsyncQueue* function(GAsyncQueue* queue) c_g_async_queue_ref; 1666 void function(GAsyncQueue* queue) c_g_async_queue_unref; 1667 void function(GAsyncQueue* queue, void* data) c_g_async_queue_push; 1668 void function(GAsyncQueue* queue, void* data, GCompareDataFunc func, void* userData) c_g_async_queue_push_sorted; 1669 gpointer function(GAsyncQueue* queue) c_g_async_queue_pop; 1670 gpointer function(GAsyncQueue* queue) c_g_async_queue_try_pop; 1671 gpointer function(GAsyncQueue* queue, GTimeVal* endTime) c_g_async_queue_timed_pop; 1672 gint function(GAsyncQueue* queue) c_g_async_queue_length; 1673 void function(GAsyncQueue* queue, GCompareDataFunc func, void* userData) c_g_async_queue_sort; 1674 void function(GAsyncQueue* queue) c_g_async_queue_lock; 1675 void function(GAsyncQueue* queue) c_g_async_queue_unlock; 1676 void function(GAsyncQueue* queue) c_g_async_queue_ref_unlocked; 1677 void function(GAsyncQueue* queue) c_g_async_queue_unref_and_unlock; 1678 void function(GAsyncQueue* queue, void* data) c_g_async_queue_push_unlocked; 1679 void function(GAsyncQueue* queue, void* data, GCompareDataFunc func, void* userData) c_g_async_queue_push_sorted_unlocked; 1680 gpointer function(GAsyncQueue* queue) c_g_async_queue_pop_unlocked; 1681 gpointer function(GAsyncQueue* queue) c_g_async_queue_try_pop_unlocked; 1682 gpointer function(GAsyncQueue* queue, GTimeVal* endTime) c_g_async_queue_timed_pop_unlocked; 1683 gint function(GAsyncQueue* queue) c_g_async_queue_length_unlocked; 1684 void function(GAsyncQueue* queue, GCompareDataFunc func, void* userData) c_g_async_queue_sort_unlocked; 1685 1686 // glib.Module 1687 1688 GModule* function(gchar* fileName, GModuleFlags flags) c_g_module_open; 1689 gboolean function() c_g_module_supported; 1690 gchar* function(gchar* directory, gchar* moduleName) c_g_module_build_path; 1691 gboolean function(GModule* modul, gchar* symbolName, void** symbol) c_g_module_symbol; 1692 void function(GModule* modul) c_g_module_make_resident; 1693 gboolean function(GModule* modul) c_g_module_close; 1694 gchar* function() c_g_module_error; 1695 1696 // glib.Memory 1697 1698 gpointer function(gsize nBytes) c_g_malloc; 1699 gpointer function(gsize nBytes) c_g_malloc0; 1700 gpointer function(void* mem, gsize nBytes) c_g_realloc; 1701 gpointer function(gsize nBytes) c_g_try_malloc; 1702 gpointer function(gsize nBytes) c_g_try_malloc0; 1703 gpointer function(void* mem, gsize nBytes) c_g_try_realloc; 1704 gpointer function(gsize nBlocks, gsize nBlockBytes) c_g_malloc_n; 1705 gpointer function(gsize nBlocks, gsize nBlockBytes) c_g_malloc0_n; 1706 gpointer function(void* mem, gsize nBlocks, gsize nBlockBytes) c_g_realloc_n; 1707 gpointer function(gsize nBlocks, gsize nBlockBytes) c_g_try_malloc_n; 1708 gpointer function(gsize nBlocks, gsize nBlockBytes) c_g_try_malloc0_n; 1709 gpointer function(void* mem, gsize nBlocks, gsize nBlockBytes) c_g_try_realloc_n; 1710 void function(void* mem) c_g_free; 1711 gpointer function(void* mem, guint byteSize) c_g_memdup; 1712 void function(GMemVTable* vtable) c_g_mem_set_vtable; 1713 gboolean function() c_g_mem_is_system_malloc; 1714 void function() c_g_mem_profile; 1715 1716 // glib.IOChannel 1717 1718 GIOChannel* function(int fd) c_g_io_channel_unix_new; 1719 gint function(GIOChannel* channel) c_g_io_channel_unix_get_fd; 1720 GIOChannel* function(gint fd) c_g_io_channel_win32_new_fd; 1721 GIOChannel* function(gint socket) c_g_io_channel_win32_new_socket; 1722 GIOChannel* function(gsize hwnd) c_g_io_channel_win32_new_messages; 1723 void function(GIOChannel* channel) c_g_io_channel_init; 1724 GIOStatus function(GIOChannel* channel, gchar* buf, gsize count, gsize* bytesRead, GError** error) c_g_io_channel_read_chars; 1725 GIOStatus function(GIOChannel* channel, gunichar* thechar, GError** error) c_g_io_channel_read_unichar; 1726 GIOStatus function(GIOChannel* channel, gchar** strReturn, gsize* length, gsize* terminatorPos, GError** error) c_g_io_channel_read_line; 1727 GIOStatus function(GIOChannel* channel, GString* buffer, gsize* terminatorPos, GError** error) c_g_io_channel_read_line_string; 1728 GIOStatus function(GIOChannel* channel, gchar** strReturn, gsize* length, GError** error) c_g_io_channel_read_to_end; 1729 GIOStatus function(GIOChannel* channel, gchar* buf, gssize count, gsize* bytesWritten, GError** error) c_g_io_channel_write_chars; 1730 GIOStatus function(GIOChannel* channel, gunichar thechar, GError** error) c_g_io_channel_write_unichar; 1731 GIOStatus function(GIOChannel* channel, GError** error) c_g_io_channel_flush; 1732 GIOStatus function(GIOChannel* channel, gint64 offset, GSeekType type, GError** error) c_g_io_channel_seek_position; 1733 GIOStatus function(GIOChannel* channel, gboolean flush, GError** err) c_g_io_channel_shutdown; 1734 GIOChannelError function(gint en) c_g_io_channel_error_from_errno; 1735 GIOChannel* function(GIOChannel* channel) c_g_io_channel_ref; 1736 void function(GIOChannel* channel) c_g_io_channel_unref; 1737 GSource* function(GIOChannel* channel, GIOCondition condition) c_g_io_create_watch; 1738 guint function(GIOChannel* channel, GIOCondition condition, GIOFunc func, void* userData) c_g_io_add_watch; 1739 guint function(GIOChannel* channel, gint priority, GIOCondition condition, GIOFunc func, void* userData, GDestroyNotify notify) c_g_io_add_watch_full; 1740 gsize function(GIOChannel* channel) c_g_io_channel_get_buffer_size; 1741 void function(GIOChannel* channel, gsize size) c_g_io_channel_set_buffer_size; 1742 GIOCondition function(GIOChannel* channel) c_g_io_channel_get_buffer_condition; 1743 GIOFlags function(GIOChannel* channel) c_g_io_channel_get_flags; 1744 GIOStatus function(GIOChannel* channel, GIOFlags flags, GError** error) c_g_io_channel_set_flags; 1745 gchar* function(GIOChannel* channel, gint* length) c_g_io_channel_get_line_term; 1746 void function(GIOChannel* channel, gchar* lineTerm, gint length) c_g_io_channel_set_line_term; 1747 gboolean function(GIOChannel* channel) c_g_io_channel_get_buffered; 1748 void function(GIOChannel* channel, gboolean buffered) c_g_io_channel_set_buffered; 1749 gchar* function(GIOChannel* channel) c_g_io_channel_get_encoding; 1750 GIOStatus function(GIOChannel* channel, gchar* encoding, GError** error) c_g_io_channel_set_encoding; 1751 gboolean function(GIOChannel* channel) c_g_io_channel_get_close_on_unref; 1752 void function(GIOChannel* channel, gboolean doClose) c_g_io_channel_set_close_on_unref; 1753 GIOError function(GIOChannel* channel, gchar* buf, gsize count, gsize* bytesRead) c_g_io_channel_read; 1754 GIOError function(GIOChannel* channel, gchar* buf, gsize count, gsize* bytesWritten) c_g_io_channel_write; 1755 GIOError function(GIOChannel* channel, gint64 offset, GSeekType type) c_g_io_channel_seek; 1756 void function(GIOChannel* channel) c_g_io_channel_close; 1757 1758 // glib.ErrorG 1759 1760 GError* function(GQuark domain, gint code, gchar* format, ... ) c_g_error_new; 1761 GError* function(GQuark domain, gint code, gchar* message) c_g_error_new_literal; 1762 GError* function(GQuark domain, gint code, gchar* format, va_list args) c_g_error_new_valist; 1763 void function(GError* error) c_g_error_free; 1764 GError* function(GError* error) c_g_error_copy; 1765 gboolean function(GError* error, GQuark domain, gint code) c_g_error_matches; 1766 void function(GError** err, GQuark domain, gint code, gchar* format, ... ) c_g_set_error; 1767 void function(GError** err, GQuark domain, gint code, gchar* message) c_g_set_error_literal; 1768 void function(GError** dest, GError* src) c_g_propagate_error; 1769 void function(GError** err) c_g_clear_error; 1770 void function(GError** err, gchar* format, ... ) c_g_prefix_error; 1771 void function(GError** dest, GError* src, gchar* format, ... ) c_g_propagate_prefixed_error; 1772 1773 // glib. 1774 1775 1776 // glib. 1777 1778 1779 // glib.Messages 1780 1781 void function(gchar* format, ... ) c_g_print; 1782 GPrintFunc function(GPrintFunc func) c_g_set_print_handler; 1783 void function(gchar* format, ... ) c_g_printerr; 1784 GPrintFunc function(GPrintFunc func) c_g_set_printerr_handler; 1785 void function(gchar* prgName) c_g_on_error_query; 1786 void function(gchar* prgName) c_g_on_error_stack_trace; 1787 1788 // glib.MessageLog 1789 1790 void function(gchar* logDomain, GLogLevelFlags logLevel, gchar* format, ... ) c_g_log; 1791 void function(gchar* logDomain, GLogLevelFlags logLevel, gchar* format, va_list args) c_g_logv; 1792 guint function(gchar* logDomain, GLogLevelFlags logLevels, GLogFunc logFunc, void* userData) c_g_log_set_handler; 1793 void function(gchar* logDomain, guint handlerId) c_g_log_remove_handler; 1794 GLogLevelFlags function(GLogLevelFlags fatalMask) c_g_log_set_always_fatal; 1795 GLogLevelFlags function(gchar* logDomain, GLogLevelFlags fatalMask) c_g_log_set_fatal_mask; 1796 void function(gchar* logDomain, GLogLevelFlags logLevel, gchar* message, void* unusedData) c_g_log_default_handler; 1797 GLogFunc function(GLogFunc logFunc, void* userData) c_g_log_set_default_handler; 1798 1799 // glib.Str 1800 1801 gchar* function(gchar* str) c_g_strdup; 1802 gchar* function(gchar* str, gsize n) c_g_strndup; 1803 gchar** function(gchar** strArray) c_g_strdupv; 1804 gchar* function(gsize length, gchar fillChar) c_g_strnfill; 1805 gchar* function(gchar* dest, char* src) c_g_stpcpy; 1806 gchar* function(gchar* haystack, gssize haystackLen, gchar* needle) c_g_strstr_len; 1807 gchar* function(gchar* haystack, gchar* needle) c_g_strrstr; 1808 gchar* function(gchar* haystack, gssize haystackLen, gchar* needle) c_g_strrstr_len; 1809 gboolean function(gchar* str, gchar* prefix) c_g_str_has_prefix; 1810 gboolean function(gchar* str, gchar* suffix) c_g_str_has_suffix; 1811 int function(char* str1, char* str2) c_g_strcmp0; 1812 gsize function(gchar* dest, gchar* src, gsize destSize) c_g_strlcpy; 1813 gsize function(gchar* dest, gchar* src, gsize destSize) c_g_strlcat; 1814 gchar* function(gchar* format, ... ) c_g_strdup_printf; 1815 gchar* function(gchar* format, va_list args) c_g_strdup_vprintf; 1816 gint function(gchar* format, ... ) c_g_printf; 1817 gint function(gchar* format, va_list args) c_g_vprintf; 1818 gint function(void* file, gchar* format, ... ) c_g_fprintf; 1819 gint function(void* file, gchar* format, va_list args) c_g_vfprintf; 1820 gint function(gchar* string, gchar* format, ... ) c_g_sprintf; 1821 gint function(gchar* string, gchar* format, va_list args) c_g_vsprintf; 1822 gint function(gchar* string, gulong n, gchar* format, ... ) c_g_snprintf; 1823 gint function(gchar* string, gulong n, gchar* format, va_list args) c_g_vsnprintf; 1824 gint function(gchar** string, gchar* format, va_list args) c_g_vasprintf; 1825 gsize function(gchar* format, va_list args) c_g_printf_string_upper_bound; 1826 gboolean function(gchar c) c_g_ascii_isalnum; 1827 gboolean function(gchar c) c_g_ascii_isalpha; 1828 gboolean function(gchar c) c_g_ascii_iscntrl; 1829 gboolean function(gchar c) c_g_ascii_isdigit; 1830 gboolean function(gchar c) c_g_ascii_isgraph; 1831 gboolean function(gchar c) c_g_ascii_islower; 1832 gboolean function(gchar c) c_g_ascii_isprint; 1833 gboolean function(gchar c) c_g_ascii_ispunct; 1834 gboolean function(gchar c) c_g_ascii_isspace; 1835 gboolean function(gchar c) c_g_ascii_isupper; 1836 gboolean function(gchar c) c_g_ascii_isxdigit; 1837 gint function(gchar c) c_g_ascii_digit_value; 1838 gint function(gchar c) c_g_ascii_xdigit_value; 1839 gint function(gchar* s1, gchar* s2) c_g_ascii_strcasecmp; 1840 gint function(gchar* s1, gchar* s2, gsize n) c_g_ascii_strncasecmp; 1841 gchar* function(gchar* str, gssize len) c_g_ascii_strup; 1842 gchar* function(gchar* str, gssize len) c_g_ascii_strdown; 1843 gchar function(gchar c) c_g_ascii_tolower; 1844 gchar function(gchar c) c_g_ascii_toupper; 1845 GString* function(GString* string) c_g_string_ascii_up; 1846 GString* function(GString* string) c_g_string_ascii_down; 1847 gchar* function(gchar* string) c_g_strup; 1848 gchar* function(gchar* string) c_g_strdown; 1849 gint function(gchar* s1, gchar* s2) c_g_strcasecmp; 1850 gint function(gchar* s1, gchar* s2, guint n) c_g_strncasecmp; 1851 gchar* function(gchar* string) c_g_strreverse; 1852 gint64 function(gchar* nptr, gchar** endptr, guint base) c_g_ascii_strtoll; 1853 guint64 function(gchar* nptr, gchar** endptr, guint base) c_g_ascii_strtoull; 1854 gdouble function(gchar* nptr, gchar** endptr) c_g_ascii_strtod; 1855 gchar* function(gchar* buffer, gint bufLen, gdouble d) c_g_ascii_dtostr; 1856 gchar* function(gchar* buffer, gint bufLen, gchar* format, gdouble d) c_g_ascii_formatd; 1857 gdouble function(gchar* nptr, gchar** endptr) c_g_strtod; 1858 gchar* function(gchar* string) c_g_strchug; 1859 gchar* function(gchar* string) c_g_strchomp; 1860 gchar* function(gchar* string, gchar* delimiters, gchar newDelimiter) c_g_strdelimit; 1861 gchar* function(gchar* source, gchar* exceptions) c_g_strescape; 1862 gchar* function(gchar* source) c_g_strcompress; 1863 gchar* function(gchar* string, gchar* validChars, gchar substitutor) c_g_strcanon; 1864 gchar** function(gchar* string, gchar* delimiter, gint maxTokens) c_g_strsplit; 1865 gchar** function(gchar* string, gchar* delimiters, gint maxTokens) c_g_strsplit_set; 1866 void function(gchar** strArray) c_g_strfreev; 1867 gchar* function(gchar* string1, ... ) c_g_strconcat; 1868 gchar* function(gchar* separator, ... ) c_g_strjoin; 1869 gchar* function(gchar* separator, gchar** strArray) c_g_strjoinv; 1870 guint function(gchar** strArray) c_g_strv_length; 1871 gchar* function(gint errnum) c_g_strerror; 1872 gchar* function(gint signum) c_g_strsignal; 1873 1874 // glib.CharacterSet 1875 1876 gchar* function(gchar* str, gssize len, gchar* toCodeset, gchar* fromCodeset, gsize* bytesRead, gsize* bytesWritten, GError** error) c_g_convert; 1877 gchar* function(gchar* str, gssize len, gchar* toCodeset, gchar* fromCodeset, gchar* fallback, gsize* bytesRead, gsize* bytesWritten, GError** error) c_g_convert_with_fallback; 1878 gchar* function(gchar* opsysstring, gssize len, gsize* bytesRead, gsize* bytesWritten, GError** error) c_g_locale_to_utf8; 1879 gboolean function(gchar*** charsets) c_g_get_filename_charsets; 1880 gchar* function(gchar* filename) c_g_filename_display_name; 1881 gchar* function(gchar* filename) c_g_filename_display_basename; 1882 gchar* function(gchar* utf8string, gssize len, gsize* bytesRead, gsize* bytesWritten, GError** error) c_g_locale_from_utf8; 1883 gboolean function(char** charset) c_g_get_charset; 1884 1885 // glib.Unicode 1886 1887 gboolean function(gunichar ch) c_g_unichar_validate; 1888 gboolean function(gunichar c) c_g_unichar_isalnum; 1889 gboolean function(gunichar c) c_g_unichar_isalpha; 1890 gboolean function(gunichar c) c_g_unichar_iscntrl; 1891 gboolean function(gunichar c) c_g_unichar_isdefined; 1892 gboolean function(gunichar c) c_g_unichar_isdigit; 1893 gboolean function(gunichar c) c_g_unichar_isgraph; 1894 gboolean function(gunichar c) c_g_unichar_islower; 1895 gboolean function(gunichar c) c_g_unichar_ismark; 1896 gboolean function(gunichar c) c_g_unichar_isprint; 1897 gboolean function(gunichar c) c_g_unichar_ispunct; 1898 gboolean function(gunichar c) c_g_unichar_isspace; 1899 gboolean function(gunichar c) c_g_unichar_istitle; 1900 gboolean function(gunichar c) c_g_unichar_isupper; 1901 gboolean function(gunichar c) c_g_unichar_isxdigit; 1902 gboolean function(gunichar c) c_g_unichar_iswide; 1903 gboolean function(gunichar c) c_g_unichar_iswide_cjk; 1904 gboolean function(gunichar c) c_g_unichar_iszerowidth; 1905 gunichar function(gunichar c) c_g_unichar_toupper; 1906 gunichar function(gunichar c) c_g_unichar_tolower; 1907 gunichar function(gunichar c) c_g_unichar_totitle; 1908 gint function(gunichar c) c_g_unichar_digit_value; 1909 gint function(gunichar c) c_g_unichar_xdigit_value; 1910 GUnicodeType function(gunichar c) c_g_unichar_type; 1911 GUnicodeBreakType function(gunichar c) c_g_unichar_break_type; 1912 gint function(gunichar uc) c_g_unichar_combining_class; 1913 void function(gunichar* string, gsize len) c_g_unicode_canonical_ordering; 1914 gunichar* function(gunichar ch, gsize* resultLen) c_g_unicode_canonical_decomposition; 1915 gboolean function(gunichar ch, gunichar* mirroredCh) c_g_unichar_get_mirror_char; 1916 GUnicodeScript function(gunichar ch) c_g_unichar_get_script; 1917 gunichar function(gchar* p) c_g_utf8_get_char; 1918 gunichar function(gchar* p, gssize maxLen) c_g_utf8_get_char_validated; 1919 gchar* function(gchar* str, glong offset) c_g_utf8_offset_to_pointer; 1920 glong function(gchar* str, gchar* pos) c_g_utf8_pointer_to_offset; 1921 gchar* function(gchar* p) c_g_utf8_prev_char; 1922 gchar* function(gchar* p, gchar* end) c_g_utf8_find_next_char; 1923 gchar* function(gchar* str, gchar* p) c_g_utf8_find_prev_char; 1924 glong function(gchar* p, gssize max) c_g_utf8_strlen; 1925 gchar* function(gchar* dest, gchar* src, gsize n) c_g_utf8_strncpy; 1926 gchar* function(gchar* p, gssize len, gunichar c) c_g_utf8_strchr; 1927 gchar* function(gchar* p, gssize len, gunichar c) c_g_utf8_strrchr; 1928 gchar* function(gchar* str, gssize len) c_g_utf8_strreverse; 1929 gboolean function(gchar* str, gssize maxLen, gchar** end) c_g_utf8_validate; 1930 gchar* function(gchar* str, gssize len) c_g_utf8_strup; 1931 gchar* function(gchar* str, gssize len) c_g_utf8_strdown; 1932 gchar* function(gchar* str, gssize len) c_g_utf8_casefold; 1933 gchar* function(gchar* str, gssize len, GNormalizeMode mode) c_g_utf8_normalize; 1934 gint function(gchar* str1, gchar* str2) c_g_utf8_collate; 1935 gchar* function(gchar* str, gssize len) c_g_utf8_collate_key; 1936 gchar* function(gchar* str, gssize len) c_g_utf8_collate_key_for_filename; 1937 gunichar2* function(gchar* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_utf8_to_utf16; 1938 gunichar* function(gchar* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_utf8_to_ucs4; 1939 gunichar* function(gchar* str, glong len, glong* itemsWritten) c_g_utf8_to_ucs4_fast; 1940 gunichar* function(gunichar2* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_utf16_to_ucs4; 1941 gchar* function(gunichar2* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_utf16_to_utf8; 1942 gunichar2* function(gunichar* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_ucs4_to_utf16; 1943 gchar* function(gunichar* str, glong len, glong* itemsRead, glong* itemsWritten, GError** error) c_g_ucs4_to_utf8; 1944 gint function(gunichar c, gchar* outbuf) c_g_unichar_to_utf8; 1945 1946 // glib.Base64 1947 1948 gsize function(guchar* inn, gsize len, gboolean breakLines, gchar* f_out, gint* state, gint* save) c_g_base64_encode_step; 1949 gsize function(gboolean breakLines, gchar* f_out, gint* state, gint* save) c_g_base64_encode_close; 1950 gchar* function(guchar* data, gsize len) c_g_base64_encode; 1951 gsize function(gchar* inn, gsize len, guchar* f_out, gint* state, guint* save) c_g_base64_decode_step; 1952 guchar* function(gchar* text, gsize* outLen) c_g_base64_decode; 1953 guchar* function(gchar* text, gsize* outLen) c_g_base64_decode_inplace; 1954 1955 // glib.Checksum 1956 1957 gssize function(GChecksumType checksumType) c_g_checksum_type_get_length; 1958 GChecksum* function(GChecksumType checksumType) c_g_checksum_new; 1959 GChecksum* function(GChecksum* checksum) c_g_checksum_copy; 1960 void function(GChecksum* checksum) c_g_checksum_free; 1961 void function(GChecksum* checksum) c_g_checksum_reset; 1962 void function(GChecksum* checksum, guchar* data, gssize length) c_g_checksum_update; 1963 gchar* function(GChecksum* checksum) c_g_checksum_get_string; 1964 void function(GChecksum* checksum, guint8* buffer, gsize* digestLen) c_g_checksum_get_digest; 1965 gchar* function(GChecksumType checksumType, guchar* data, gsize length) c_g_compute_checksum_for_data; 1966 gchar* function(GChecksumType checksumType, gchar* str, gssize length) c_g_compute_checksum_for_string; 1967 1968 // glib.Internationalization 1969 1970 gchar* function(gchar* domain, gchar* msgid) c_g_dgettext; 1971 gchar* function(gchar* domain, gchar* msgid, int category) c_g_dcgettext; 1972 gchar* function(gchar* domain, gchar* msgid, gchar* msgidPlural, gulong n) c_g_dngettext; 1973 gchar* function(gchar* domain, gchar* msgctxtid, gsize msgidoffset) c_g_dpgettext; 1974 gchar* function(gchar* domain, gchar* context, gchar* msgid) c_g_dpgettext2; 1975 gchar* function(gchar* msgid, gchar* msgval) c_g_strip_context; 1976 gchar** function() c_g_get_language_names; 1977 gchar** function(gchar* locale) c_g_get_locale_variants; 1978 1979 // glib.TimeVal 1980 1981 void function(GTimeVal* result) c_g_get_current_time; 1982 void function(gulong microseconds) c_g_usleep; 1983 void function(GTimeVal* time, glong microseconds) c_g_time_val_add; 1984 gboolean function(gchar* isoDate, GTimeVal* time) c_g_time_val_from_iso8601; 1985 gchar* function(GTimeVal* time) c_g_time_val_to_iso8601; 1986 gint64 function() c_g_get_monotonic_time; 1987 gint64 function() c_g_get_real_time; 1988 1989 // glib.Date 1990 1991 GDate* function() c_g_date_new; 1992 GDate* function(GDateDay day, GDateMonth month, GDateYear year) c_g_date_new_dmy; 1993 GDate* function(guint32 julianDay) c_g_date_new_julian; 1994 void function(GDate* date, guint nDates) c_g_date_clear; 1995 void function(GDate* date) c_g_date_free; 1996 void function(GDate* date, GDateDay day) c_g_date_set_day; 1997 void function(GDate* date, GDateMonth month) c_g_date_set_month; 1998 void function(GDate* date, GDateYear year) c_g_date_set_year; 1999 void function(GDate* date, GDateDay day, GDateMonth month, GDateYear y) c_g_date_set_dmy; 2000 void function(GDate* date, guint32 julianDate) c_g_date_set_julian; 2001 void function(GDate* date, GTime time) c_g_date_set_time; 2002 void function(GDate* date, time_t timet) c_g_date_set_time_t; 2003 void function(GDate* date, GTimeVal* timeval) c_g_date_set_time_val; 2004 void function(GDate* date, gchar* str) c_g_date_set_parse; 2005 void function(GDate* date, guint nDays) c_g_date_add_days; 2006 void function(GDate* date, guint nDays) c_g_date_subtract_days; 2007 void function(GDate* date, guint nMonths) c_g_date_add_months; 2008 void function(GDate* date, guint nMonths) c_g_date_subtract_months; 2009 void function(GDate* date, guint nYears) c_g_date_add_years; 2010 void function(GDate* date, guint nYears) c_g_date_subtract_years; 2011 gint function(GDate* date1, GDate* date2) c_g_date_days_between; 2012 gint function(GDate* lhs, GDate* rhs) c_g_date_compare; 2013 void function(GDate* date, GDate* minDate, GDate* maxDate) c_g_date_clamp; 2014 void function(GDate* date1, GDate* date2) c_g_date_order; 2015 GDateDay function(GDate* date) c_g_date_get_day; 2016 GDateMonth function(GDate* date) c_g_date_get_month; 2017 GDateYear function(GDate* date) c_g_date_get_year; 2018 guint32 function(GDate* date) c_g_date_get_julian; 2019 GDateWeekday function(GDate* date) c_g_date_get_weekday; 2020 guint function(GDate* date) c_g_date_get_day_of_year; 2021 guint8 function(GDateMonth month, GDateYear year) c_g_date_get_days_in_month; 2022 gboolean function(GDate* date) c_g_date_is_first_of_month; 2023 gboolean function(GDate* date) c_g_date_is_last_of_month; 2024 gboolean function(GDateYear year) c_g_date_is_leap_year; 2025 guint function(GDate* date) c_g_date_get_monday_week_of_year; 2026 guint8 function(GDateYear year) c_g_date_get_monday_weeks_in_year; 2027 guint function(GDate* date) c_g_date_get_sunday_week_of_year; 2028 guint8 function(GDateYear year) c_g_date_get_sunday_weeks_in_year; 2029 guint function(GDate* date) c_g_date_get_iso8601_week_of_year; 2030 gsize function(gchar* s, gsize slen, gchar* format, GDate* date) c_g_date_strftime; 2031 void function(GDate* date, void* tm) c_g_date_to_struct_tm; 2032 gboolean function(GDate* date) c_g_date_valid; 2033 gboolean function(GDateDay day) c_g_date_valid_day; 2034 gboolean function(GDateMonth month) c_g_date_valid_month; 2035 gboolean function(GDateYear year) c_g_date_valid_year; 2036 gboolean function(GDateDay day, GDateMonth month, GDateYear year) c_g_date_valid_dmy; 2037 gboolean function(guint32 julianDate) c_g_date_valid_julian; 2038 gboolean function(GDateWeekday weekday) c_g_date_valid_weekday; 2039 2040 // glib.TimeZone 2041 2042 void function(GTimeZone* tz) c_g_time_zone_unref; 2043 GTimeZone* function(GTimeZone* tz) c_g_time_zone_ref; 2044 GTimeZone* function(gchar* identifier) c_g_time_zone_new; 2045 GTimeZone* function() c_g_time_zone_new_local; 2046 GTimeZone* function() c_g_time_zone_new_utc; 2047 gint function(GTimeZone* tz, GTimeType type, gint64 time) c_g_time_zone_find_interval; 2048 gint function(GTimeZone* tz, GTimeType type, gint64* time) c_g_time_zone_adjust_time; 2049 gchar* function(GTimeZone* tz, gint interval) c_g_time_zone_get_abbreviation; 2050 gint32 function(GTimeZone* tz, gint interval) c_g_time_zone_get_offset; 2051 gboolean function(GTimeZone* tz, gint interval) c_g_time_zone_is_dst; 2052 2053 // glib.DateTime 2054 2055 void function(GDateTime* datetime) c_g_date_time_unref; 2056 GDateTime* function(GDateTime* datetime) c_g_date_time_ref; 2057 GDateTime* function(GTimeZone* tz) c_g_date_time_new_now; 2058 GDateTime* function() c_g_date_time_new_now_local; 2059 GDateTime* function() c_g_date_time_new_now_utc; 2060 GDateTime* function(gint64 t) c_g_date_time_new_from_unix_local; 2061 GDateTime* function(gint64 t) c_g_date_time_new_from_unix_utc; 2062 GDateTime* function(GTimeVal* tv) c_g_date_time_new_from_timeval_local; 2063 GDateTime* function(GTimeVal* tv) c_g_date_time_new_from_timeval_utc; 2064 GDateTime* function(GTimeZone* tz, gint year, gint month, gint day, gint hour, gint minute, gdouble seconds) c_g_date_time_new; 2065 GDateTime* function(gint year, gint month, gint day, gint hour, gint minute, gdouble seconds) c_g_date_time_new_local; 2066 GDateTime* function(gint year, gint month, gint day, gint hour, gint minute, gdouble seconds) c_g_date_time_new_utc; 2067 GDateTime* function(GDateTime* datetime, GTimeSpan timespan) c_g_date_time_add; 2068 GDateTime* function(GDateTime* datetime, gint years) c_g_date_time_add_years; 2069 GDateTime* function(GDateTime* datetime, gint months) c_g_date_time_add_months; 2070 GDateTime* function(GDateTime* datetime, gint weeks) c_g_date_time_add_weeks; 2071 GDateTime* function(GDateTime* datetime, gint days) c_g_date_time_add_days; 2072 GDateTime* function(GDateTime* datetime, gint hours) c_g_date_time_add_hours; 2073 GDateTime* function(GDateTime* datetime, gint minutes) c_g_date_time_add_minutes; 2074 GDateTime* function(GDateTime* datetime, gdouble seconds) c_g_date_time_add_seconds; 2075 GDateTime* function(GDateTime* datetime, gint years, gint months, gint days, gint hours, gint minutes, gdouble seconds) c_g_date_time_add_full; 2076 gint function(void* dt1, void* dt2) c_g_date_time_compare; 2077 GTimeSpan function(GDateTime* end, GDateTime* begin) c_g_date_time_difference; 2078 guint function(void* datetime) c_g_date_time_hash; 2079 gboolean function(void* dt1, void* dt2) c_g_date_time_equal; 2080 void function(GDateTime* datetime, gint* year, gint* month, gint* day) c_g_date_time_get_ymd; 2081 gint function(GDateTime* datetime) c_g_date_time_get_year; 2082 gint function(GDateTime* datetime) c_g_date_time_get_month; 2083 gint function(GDateTime* datetime) c_g_date_time_get_day_of_month; 2084 gint function(GDateTime* datetime) c_g_date_time_get_week_numbering_year; 2085 gint function(GDateTime* datetime) c_g_date_time_get_week_of_year; 2086 gint function(GDateTime* datetime) c_g_date_time_get_day_of_week; 2087 gint function(GDateTime* datetime) c_g_date_time_get_day_of_year; 2088 gint function(GDateTime* datetime) c_g_date_time_get_hour; 2089 gint function(GDateTime* datetime) c_g_date_time_get_minute; 2090 gint function(GDateTime* datetime) c_g_date_time_get_second; 2091 gint function(GDateTime* datetime) c_g_date_time_get_microsecond; 2092 gdouble function(GDateTime* datetime) c_g_date_time_get_seconds; 2093 gint64 function(GDateTime* datetime) c_g_date_time_to_unix; 2094 gboolean function(GDateTime* datetime, GTimeVal* tv) c_g_date_time_to_timeval; 2095 GTimeSpan function(GDateTime* datetime) c_g_date_time_get_utc_offset; 2096 gchar* function(GDateTime* datetime) c_g_date_time_get_timezone_abbreviation; 2097 gboolean function(GDateTime* datetime) c_g_date_time_is_daylight_savings; 2098 GDateTime* function(GDateTime* datetime, GTimeZone* tz) c_g_date_time_to_timezone; 2099 GDateTime* function(GDateTime* datetime) c_g_date_time_to_local; 2100 GDateTime* function(GDateTime* datetime) c_g_date_time_to_utc; 2101 gchar* function(GDateTime* datetime, gchar* format) c_g_date_time_format; 2102 2103 // glib.RandG 2104 2105 GRand* function(guint32 seed) c_g_rand_new_with_seed; 2106 GRand* function(guint32* seed, guint seedLength) c_g_rand_new_with_seed_array; 2107 GRand* function() c_g_rand_new; 2108 GRand* function(GRand* rand) c_g_rand_copy; 2109 void function(GRand* rand) c_g_rand_free; 2110 void function(GRand* rand, guint32 seed) c_g_rand_set_seed; 2111 void function(GRand* rand, guint32* seed, guint seedLength) c_g_rand_set_seed_array; 2112 guint32 function(GRand* rand) c_g_rand_int; 2113 gint32 function(GRand* rand, gint32 begin, gint32 end) c_g_rand_int_range; 2114 gdouble function(GRand* rand) c_g_rand_double; 2115 gdouble function(GRand* rand, gdouble begin, gdouble end) c_g_rand_double_range; 2116 void function(guint32 seed) c_g_random_set_seed; 2117 guint32 function() c_g_random_int; 2118 gint32 function(gint32 begin, gint32 end) c_g_random_int_range; 2119 gdouble function() c_g_random_double; 2120 gdouble function(gdouble begin, gdouble end) c_g_random_double_range; 2121 2122 // glib.Util 2123 2124 gchar* function() c_g_get_application_name; 2125 void function(gchar* applicationName) c_g_set_application_name; 2126 gchar* function() c_g_get_prgname; 2127 void function(gchar* prgname) c_g_set_prgname; 2128 gchar** function() c_g_get_environ; 2129 gchar** function() c_g_listenv; 2130 gchar* function() c_g_get_user_cache_dir; 2131 gchar* function() c_g_get_user_data_dir; 2132 gchar* function() c_g_get_user_config_dir; 2133 gchar* function() c_g_get_user_runtime_dir; 2134 gchar* function(GUserDirectory directory) c_g_get_user_special_dir; 2135 gchar** function() c_g_get_system_data_dirs; 2136 gchar** function() c_g_get_system_config_dirs; 2137 void function() c_g_reload_user_special_dirs_cache; 2138 gchar* function() c_g_get_host_name; 2139 gchar* function(gchar* fileName) c_g_basename; 2140 gboolean function(gchar* fileName) c_g_path_is_absolute; 2141 gchar* function(gchar* fileName) c_g_path_skip_root; 2142 gchar* function(gchar* fileName) c_g_path_get_basename; 2143 gchar* function(gchar* fileName) c_g_path_get_dirname; 2144 gchar* function(gchar* firstElement, ... ) c_g_build_filename; 2145 gchar* function(gchar** args) c_g_build_filenamev; 2146 gchar* function(gchar* separator, gchar* firstElement, ... ) c_g_build_path; 2147 gchar* function(gchar* separator, gchar** args) c_g_build_pathv; 2148 char* function(goffset size) c_g_format_size_for_display; 2149 gint function(gulong mask, gint nthBit) c_g_bit_nth_lsf; 2150 gint function(gulong mask, gint nthBit) c_g_bit_nth_msf; 2151 guint function(gulong number) c_g_bit_storage; 2152 guint function(guint num) c_g_spaced_primes_closest; 2153 void function(GVoidFunc func) c_g_atexit; 2154 guint function(gchar* string, GDebugKey* keys, guint nkeys) c_g_parse_debug_string; 2155 void function(void* pbase, gint totalElems, gsize size, GCompareDataFunc compareFunc, void* userData) c_g_qsort_with_data; 2156 void function(void** nullifyLocation) c_g_nullify_pointer; 2157 2158 // glib.ScannerG 2159 2160 GScanner* function(GScannerConfig* configTempl) c_g_scanner_new; 2161 void function(GScanner* scanner) c_g_scanner_destroy; 2162 void function(GScanner* scanner, gint inputFd) c_g_scanner_input_file; 2163 void function(GScanner* scanner) c_g_scanner_sync_file_offset; 2164 void function(GScanner* scanner, gchar* text, guint textLen) c_g_scanner_input_text; 2165 GTokenType function(GScanner* scanner) c_g_scanner_peek_next_token; 2166 GTokenType function(GScanner* scanner) c_g_scanner_get_next_token; 2167 gboolean function(GScanner* scanner) c_g_scanner_eof; 2168 guint function(GScanner* scanner) c_g_scanner_cur_line; 2169 guint function(GScanner* scanner) c_g_scanner_cur_position; 2170 GTokenType function(GScanner* scanner) c_g_scanner_cur_token; 2171 GTokenValue function(GScanner* scanner) c_g_scanner_cur_value; 2172 guint function(GScanner* scanner, guint scopeId) c_g_scanner_set_scope; 2173 void function(GScanner* scanner, guint scopeId, gchar* symbol, void* value) c_g_scanner_scope_add_symbol; 2174 void function(GScanner* scanner, guint scopeId, GHFunc func, void* userData) c_g_scanner_scope_foreach_symbol; 2175 gpointer function(GScanner* scanner, guint scopeId, gchar* symbol) c_g_scanner_scope_lookup_symbol; 2176 void function(GScanner* scanner, guint scopeId, gchar* symbol) c_g_scanner_scope_remove_symbol; 2177 gpointer function(GScanner* scanner, gchar* symbol) c_g_scanner_lookup_symbol; 2178 void function(GScanner* scanner, gchar* format, ... ) c_g_scanner_warn; 2179 void function(GScanner* scanner, gchar* format, ... ) c_g_scanner_error; 2180 void function(GScanner* scanner, GTokenType expectedToken, gchar* identifierSpec, gchar* symbolSpec, gchar* symbolName, gchar* message, gint isError) c_g_scanner_unexp_token; 2181 2182 // glib.StringCompletion 2183 2184 GCompletion* function(GCompletionFunc func) c_g_completion_new; 2185 void function(GCompletion* cmp, GList* items) c_g_completion_add_items; 2186 void function(GCompletion* cmp, GList* items) c_g_completion_remove_items; 2187 void function(GCompletion* cmp) c_g_completion_clear_items; 2188 GList* function(GCompletion* cmp, gchar* prefix, gchar** newPrefix) c_g_completion_complete; 2189 GList* function(GCompletion* cmp, gchar* prefix, gchar** newPrefix) c_g_completion_complete_utf8; 2190 void function(GCompletion* cmp, GCompletionStrncmpFunc strncmpFunc) c_g_completion_set_compare; 2191 void function(GCompletion* cmp) c_g_completion_free; 2192 2193 // glib.Timer 2194 2195 GTimer* function() c_g_timer_new; 2196 void function(GTimer* timer) c_g_timer_start; 2197 void function(GTimer* timer) c_g_timer_stop; 2198 void function(GTimer* timer) c_g_timer_continue; 2199 gdouble function(GTimer* timer, gulong* microseconds) c_g_timer_elapsed; 2200 void function(GTimer* timer) c_g_timer_reset; 2201 void function(GTimer* timer) c_g_timer_destroy; 2202 2203 // glib.Spawn 2204 2205 gboolean function(gchar* workingDirectory, gchar** argv, gchar** envp, GSpawnFlags flags, GSpawnChildSetupFunc childSetup, void* userData, GPid* childPid, gint* standardInput, gint* standardOutput, gint* standardError, GError** error) c_g_spawn_async_with_pipes; 2206 gboolean function(gchar* workingDirectory, gchar** argv, gchar** envp, GSpawnFlags flags, GSpawnChildSetupFunc childSetup, void* userData, GPid* childPid, GError** error) c_g_spawn_async; 2207 gboolean function(gchar* workingDirectory, gchar** argv, gchar** envp, GSpawnFlags flags, GSpawnChildSetupFunc childSetup, void* userData, gchar** standardOutput, gchar** standardError, gint* exitStatus, GError** error) c_g_spawn_sync; 2208 gboolean function(gchar* commandLine, GError** error) c_g_spawn_command_line_async; 2209 gboolean function(gchar* commandLine, gchar** standardOutput, gchar** standardError, gint* exitStatus, GError** error) c_g_spawn_command_line_sync; 2210 void function(GPid pid) c_g_spawn_close_pid; 2211 2212 // glib.FileUtils 2213 2214 GFileError function(gint errNo) c_g_file_error_from_errno; 2215 gboolean function(gchar* filename, gchar* contents, gssize length, GError** error) c_g_file_set_contents; 2216 gint function(gchar* tmpl, int flags, int mode) c_g_mkstemp_full; 2217 gchar* function(gchar* filename, GError** error) c_g_file_read_link; 2218 int function(gchar* pathname, int mode) c_g_mkdir_with_parents; 2219 int function(gchar* filename) c_g_unlink; 2220 int function(gchar* filename) c_g_rmdir; 2221 int function(gchar* filename, int mode) c_g_access; 2222 int function(gchar* path) c_g_chdir; 2223 2224 // glib.Directory 2225 2226 void function(GDir* dir) c_g_dir_rewind; 2227 void function(GDir* dir) c_g_dir_close; 2228 2229 // glib.MappedFile 2230 2231 GMappedFile* function(gchar* filename, gboolean writable, GError** error) c_g_mapped_file_new; 2232 GMappedFile* function(GMappedFile* file) c_g_mapped_file_ref; 2233 void function(GMappedFile* file) c_g_mapped_file_unref; 2234 void function(GMappedFile* file) c_g_mapped_file_free; 2235 gsize function(GMappedFile* file) c_g_mapped_file_get_length; 2236 gchar* function(GMappedFile* file) c_g_mapped_file_get_contents; 2237 2238 // glib.URI 2239 2240 char* function(char* uri) c_g_uri_parse_scheme; 2241 char* function(char* unescaped, char* reservedCharsAllowed, gboolean allowUtf8) c_g_uri_escape_string; 2242 char* function(char* escapedString, char* illegalCharacters) c_g_uri_unescape_string; 2243 char* function(char* escapedString, char* escapedStringEnd, char* illegalCharacters) c_g_uri_unescape_segment; 2244 gchar** function(gchar* uriList) c_g_uri_list_extract_uris; 2245 2246 // glib.Hostname 2247 2248 gchar* function(gchar* hostname) c_g_hostname_to_ascii; 2249 gchar* function(gchar* hostname) c_g_hostname_to_unicode; 2250 gboolean function(gchar* hostname) c_g_hostname_is_non_ascii; 2251 gboolean function(gchar* hostname) c_g_hostname_is_ascii_encoded; 2252 gboolean function(gchar* hostname) c_g_hostname_is_ip_address; 2253 2254 // glib.ShellUtils 2255 2256 gboolean function(gchar* commandLine, gint* argcp, gchar*** argvp, GError** error) c_g_shell_parse_argv; 2257 gchar* function(gchar* unquotedString) c_g_shell_quote; 2258 gchar* function(gchar* quotedString, GError** error) c_g_shell_unquote; 2259 2260 // glib.OptionContext 2261 2262 GOptionContext* function(gchar* parameterString) c_g_option_context_new; 2263 void function(GOptionContext* context, gchar* summary) c_g_option_context_set_summary; 2264 gchar* function(GOptionContext* context) c_g_option_context_get_summary; 2265 void function(GOptionContext* context, gchar* description) c_g_option_context_set_description; 2266 gchar* function(GOptionContext* context) c_g_option_context_get_description; 2267 void function(GOptionContext* context, GTranslateFunc func, void* data, GDestroyNotify destroyNotify) c_g_option_context_set_translate_func; 2268 void function(GOptionContext* context, gchar* domain) c_g_option_context_set_translation_domain; 2269 void function(GOptionContext* context) c_g_option_context_free; 2270 gboolean function(GOptionContext* context, gint* argc, gchar*** argv, GError** error) c_g_option_context_parse; 2271 void function(GOptionContext* context, gboolean helpEnabled) c_g_option_context_set_help_enabled; 2272 gboolean function(GOptionContext* context) c_g_option_context_get_help_enabled; 2273 void function(GOptionContext* context, gboolean ignoreUnknown) c_g_option_context_set_ignore_unknown_options; 2274 gboolean function(GOptionContext* context) c_g_option_context_get_ignore_unknown_options; 2275 gchar* function(GOptionContext* context, gboolean mainHelp, GOptionGroup* group) c_g_option_context_get_help; 2276 void function(GOptionContext* context, GOptionEntry* entries, gchar* translationDomain) c_g_option_context_add_main_entries; 2277 void function(GOptionContext* context, GOptionGroup* group) c_g_option_context_add_group; 2278 void function(GOptionContext* context, GOptionGroup* group) c_g_option_context_set_main_group; 2279 GOptionGroup* function(GOptionContext* context) c_g_option_context_get_main_group; 2280 2281 // glib.OptionGroup 2282 2283 GOptionGroup* function(gchar* name, gchar* description, gchar* helpDescription, void* userData, GDestroyNotify destroy) c_g_option_group_new; 2284 void function(GOptionGroup* group) c_g_option_group_free; 2285 void function(GOptionGroup* group, GOptionEntry* entries) c_g_option_group_add_entries; 2286 void function(GOptionGroup* group, GOptionParseFunc preParseFunc, GOptionParseFunc postParseFunc) c_g_option_group_set_parse_hooks; 2287 void function(GOptionGroup* group, GOptionErrorFunc errorFunc) c_g_option_group_set_error_hook; 2288 void function(GOptionGroup* group, GTranslateFunc func, void* data, GDestroyNotify destroyNotify) c_g_option_group_set_translate_func; 2289 void function(GOptionGroup* group, gchar* domain) c_g_option_group_set_translation_domain; 2290 2291 // glib.Pattern 2292 2293 GPatternSpec* function(gchar* pattern) c_g_pattern_spec_new; 2294 void function(GPatternSpec* pspec) c_g_pattern_spec_free; 2295 gboolean function(GPatternSpec* pspec1, GPatternSpec* pspec2) c_g_pattern_spec_equal; 2296 gboolean function(GPatternSpec* pspec, guint stringLength, gchar* string, gchar* stringReversed) c_g_pattern_match; 2297 gboolean function(GPatternSpec* pspec, gchar* string) c_g_pattern_match_string; 2298 gboolean function(gchar* pattern, gchar* string) c_g_pattern_match_simple; 2299 2300 // glib.Regex 2301 2302 GRegex* function(gchar* pattern, GRegexCompileFlags compileOptions, GRegexMatchFlags matchOptions, GError** error) c_g_regex_new; 2303 GRegex* function(GRegex* regex) c_g_regex_ref; 2304 void function(GRegex* regex) c_g_regex_unref; 2305 gchar* function(GRegex* regex) c_g_regex_get_pattern; 2306 gint function(GRegex* regex) c_g_regex_get_max_backref; 2307 gint function(GRegex* regex) c_g_regex_get_capture_count; 2308 gint function(GRegex* regex, gchar* name) c_g_regex_get_string_number; 2309 GRegexCompileFlags function(GRegex* regex) c_g_regex_get_compile_flags; 2310 GRegexMatchFlags function(GRegex* regex) c_g_regex_get_match_flags; 2311 gchar* function(gchar* string, gint length) c_g_regex_escape_string; 2312 gboolean function(gchar* pattern, gchar* string, GRegexCompileFlags compileOptions, GRegexMatchFlags matchOptions) c_g_regex_match_simple; 2313 gboolean function(GRegex* regex, gchar* string, GRegexMatchFlags matchOptions, GMatchInfo** matchInfo) c_g_regex_match; 2314 gboolean function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, GRegexMatchFlags matchOptions, GMatchInfo** matchInfo, GError** error) c_g_regex_match_full; 2315 gboolean function(GRegex* regex, gchar* string, GRegexMatchFlags matchOptions, GMatchInfo** matchInfo) c_g_regex_match_all; 2316 gboolean function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, GRegexMatchFlags matchOptions, GMatchInfo** matchInfo, GError** error) c_g_regex_match_all_full; 2317 gchar** function(gchar* pattern, gchar* string, GRegexCompileFlags compileOptions, GRegexMatchFlags matchOptions) c_g_regex_split_simple; 2318 gchar** function(GRegex* regex, gchar* string, GRegexMatchFlags matchOptions) c_g_regex_split; 2319 gchar** function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, GRegexMatchFlags matchOptions, gint maxTokens, GError** error) c_g_regex_split_full; 2320 gchar* function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, gchar* replacement, GRegexMatchFlags matchOptions, GError** error) c_g_regex_replace; 2321 gchar* function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, gchar* replacement, GRegexMatchFlags matchOptions, GError** error) c_g_regex_replace_literal; 2322 gchar* function(GRegex* regex, gchar* string, gssize stringLen, gint startPosition, GRegexMatchFlags matchOptions, GRegexEvalCallback eval, void* userData, GError** error) c_g_regex_replace_eval; 2323 gboolean function(gchar* replacement, gboolean* hasReferences, GError** error) c_g_regex_check_replacement; 2324 2325 // glib.MatchInfo 2326 2327 GRegex* function(GMatchInfo* matchInfo) c_g_match_info_get_regex; 2328 gchar* function(GMatchInfo* matchInfo) c_g_match_info_get_string; 2329 void function(GMatchInfo* matchInfo) c_g_match_info_free; 2330 gboolean function(GMatchInfo* matchInfo) c_g_match_info_matches; 2331 gboolean function(GMatchInfo* matchInfo, GError** error) c_g_match_info_next; 2332 gint function(GMatchInfo* matchInfo) c_g_match_info_get_match_count; 2333 gboolean function(GMatchInfo* matchInfo) c_g_match_info_is_partial_match; 2334 gchar* function(GMatchInfo* matchInfo, gchar* stringToExpand, GError** error) c_g_match_info_expand_references; 2335 gchar* function(GMatchInfo* matchInfo, gint matchNum) c_g_match_info_fetch; 2336 gboolean function(GMatchInfo* matchInfo, gint matchNum, gint* startPos, gint* endPos) c_g_match_info_fetch_pos; 2337 gchar* function(GMatchInfo* matchInfo, gchar* name) c_g_match_info_fetch_named; 2338 gboolean function(GMatchInfo* matchInfo, gchar* name, gint* startPos, gint* endPos) c_g_match_info_fetch_named_pos; 2339 gchar** function(GMatchInfo* matchInfo) c_g_match_info_fetch_all; 2340 2341 // glib.SimpleXML 2342 2343 gchar* function(gchar* text, gssize length) c_g_markup_escape_text; 2344 gchar* function(char* format, ... ) c_g_markup_printf_escaped; 2345 gchar* function(char* format, va_list args) c_g_markup_vprintf_escaped; 2346 gboolean function(GMarkupParseContext* context, GError** error) c_g_markup_parse_context_end_parse; 2347 void function(GMarkupParseContext* context) c_g_markup_parse_context_free; 2348 void function(GMarkupParseContext* context, gint* lineNumber, gint* charNumber) c_g_markup_parse_context_get_position; 2349 gchar* function(GMarkupParseContext* context) c_g_markup_parse_context_get_element; 2350 GSList* function(GMarkupParseContext* context) c_g_markup_parse_context_get_element_stack; 2351 gpointer function(GMarkupParseContext* context) c_g_markup_parse_context_get_user_data; 2352 GMarkupParseContext* function(GMarkupParser* parser, GMarkupParseFlags flags, void* userData, GDestroyNotify userDataDnotify) c_g_markup_parse_context_new; 2353 gboolean function(GMarkupParseContext* context, gchar* text, gssize textLen, GError** error) c_g_markup_parse_context_parse; 2354 void function(GMarkupParseContext* context, GMarkupParser* parser, void* userData) c_g_markup_parse_context_push; 2355 gpointer function(GMarkupParseContext* context) c_g_markup_parse_context_pop; 2356 gboolean function(gchar* elementName, gchar** attributeNames, gchar** attributeValues, GError** error, GMarkupCollectType firstType, gchar* firstAttr, ... ) c_g_markup_collect_attributes; 2357 2358 // glib.KeyFile 2359 2360 GKeyFile* function() c_g_key_file_new; 2361 void function(GKeyFile* keyFile) c_g_key_file_free; 2362 void function(GKeyFile* keyFile, gchar separator) c_g_key_file_set_list_separator; 2363 gboolean function(GKeyFile* keyFile, gchar* file, GKeyFileFlags flags, GError** error) c_g_key_file_load_from_file; 2364 gboolean function(GKeyFile* keyFile, gchar* data, gsize length, GKeyFileFlags flags, GError** error) c_g_key_file_load_from_data; 2365 gboolean function(GKeyFile* keyFile, gchar* file, gchar** fullPath, GKeyFileFlags flags, GError** error) c_g_key_file_load_from_data_dirs; 2366 gboolean function(GKeyFile* keyFile, gchar* file, gchar** searchDirs, gchar** fullPath, GKeyFileFlags flags, GError** error) c_g_key_file_load_from_dirs; 2367 gchar* function(GKeyFile* keyFile, gsize* length, GError** error) c_g_key_file_to_data; 2368 gchar* function(GKeyFile* keyFile) c_g_key_file_get_start_group; 2369 gchar** function(GKeyFile* keyFile, gsize* length) c_g_key_file_get_groups; 2370 gchar** function(GKeyFile* keyFile, gchar* groupName, gsize* length, GError** error) c_g_key_file_get_keys; 2371 gboolean function(GKeyFile* keyFile, gchar* groupName) c_g_key_file_has_group; 2372 gboolean function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_has_key; 2373 gchar* function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_value; 2374 gchar* function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_string; 2375 gchar* function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* locale, GError** error) c_g_key_file_get_locale_string; 2376 gboolean function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_boolean; 2377 gint function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_integer; 2378 gint64 function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_int64; 2379 guint64 function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_uint64; 2380 gdouble function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_double; 2381 gchar** function(GKeyFile* keyFile, gchar* groupName, gchar* key, gsize* length, GError** error) c_g_key_file_get_string_list; 2382 gchar** function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* locale, gsize* length, GError** error) c_g_key_file_get_locale_string_list; 2383 gboolean* function(GKeyFile* keyFile, gchar* groupName, gchar* key, gsize* length, GError** error) c_g_key_file_get_boolean_list; 2384 gint* function(GKeyFile* keyFile, gchar* groupName, gchar* key, gsize* length, GError** error) c_g_key_file_get_integer_list; 2385 gdouble* function(GKeyFile* keyFile, gchar* groupName, gchar* key, gsize* length, GError** error) c_g_key_file_get_double_list; 2386 gchar* function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_get_comment; 2387 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* value) c_g_key_file_set_value; 2388 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* string) c_g_key_file_set_string; 2389 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* locale, gchar* string) c_g_key_file_set_locale_string; 2390 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gboolean value) c_g_key_file_set_boolean; 2391 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gint value) c_g_key_file_set_integer; 2392 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gint64 value) c_g_key_file_set_int64; 2393 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, guint64 value) c_g_key_file_set_uint64; 2394 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gdouble value) c_g_key_file_set_double; 2395 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar** list, gsize length) c_g_key_file_set_string_list; 2396 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* locale, gchar** list, gsize length) c_g_key_file_set_locale_string_list; 2397 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gboolean* list, gsize length) c_g_key_file_set_boolean_list; 2398 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gint* list, gsize length) c_g_key_file_set_integer_list; 2399 void function(GKeyFile* keyFile, gchar* groupName, gchar* key, gdouble* list, gsize length) c_g_key_file_set_double_list; 2400 gboolean function(GKeyFile* keyFile, gchar* groupName, gchar* key, gchar* comment, GError** error) c_g_key_file_set_comment; 2401 gboolean function(GKeyFile* keyFile, gchar* groupName, GError** error) c_g_key_file_remove_group; 2402 gboolean function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_remove_key; 2403 gboolean function(GKeyFile* keyFile, gchar* groupName, gchar* key, GError** error) c_g_key_file_remove_comment; 2404 2405 // glib.BookmarkFile 2406 2407 GBookmarkFile* function() c_g_bookmark_file_new; 2408 void function(GBookmarkFile* bookmark) c_g_bookmark_file_free; 2409 gboolean function(GBookmarkFile* bookmark, gchar* filename, GError** error) c_g_bookmark_file_load_from_file; 2410 gboolean function(GBookmarkFile* bookmark, gchar* data, gsize length, GError** error) c_g_bookmark_file_load_from_data; 2411 gboolean function(GBookmarkFile* bookmark, gchar* file, gchar** fullPath, GError** error) c_g_bookmark_file_load_from_data_dirs; 2412 gchar* function(GBookmarkFile* bookmark, gsize* length, GError** error) c_g_bookmark_file_to_data; 2413 gboolean function(GBookmarkFile* bookmark, gchar* filename, GError** error) c_g_bookmark_file_to_file; 2414 gboolean function(GBookmarkFile* bookmark, gchar* uri) c_g_bookmark_file_has_item; 2415 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* group, GError** error) c_g_bookmark_file_has_group; 2416 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* name, GError** error) c_g_bookmark_file_has_application; 2417 gint function(GBookmarkFile* bookmark) c_g_bookmark_file_get_size; 2418 gchar** function(GBookmarkFile* bookmark, gsize* length) c_g_bookmark_file_get_uris; 2419 gchar* function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_title; 2420 gchar* function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_description; 2421 gchar* function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_mime_type; 2422 gboolean function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_is_private; 2423 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar** href, gchar** mimeType, GError** error) c_g_bookmark_file_get_icon; 2424 time_t function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_added; 2425 time_t function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_modified; 2426 time_t function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_get_visited; 2427 gchar** function(GBookmarkFile* bookmark, gchar* uri, gsize* length, GError** error) c_g_bookmark_file_get_groups; 2428 gchar** function(GBookmarkFile* bookmark, gchar* uri, gsize* length, GError** error) c_g_bookmark_file_get_applications; 2429 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* name, gchar** exec, guint* count, time_t* stamp, GError** error) c_g_bookmark_file_get_app_info; 2430 void function(GBookmarkFile* bookmark, gchar* uri, gchar* title) c_g_bookmark_file_set_title; 2431 void function(GBookmarkFile* bookmark, gchar* uri, gchar* description) c_g_bookmark_file_set_description; 2432 void function(GBookmarkFile* bookmark, gchar* uri, gchar* mimeType) c_g_bookmark_file_set_mime_type; 2433 void function(GBookmarkFile* bookmark, gchar* uri, gboolean isPrivate) c_g_bookmark_file_set_is_private; 2434 void function(GBookmarkFile* bookmark, gchar* uri, gchar* href, gchar* mimeType) c_g_bookmark_file_set_icon; 2435 void function(GBookmarkFile* bookmark, gchar* uri, time_t added) c_g_bookmark_file_set_added; 2436 void function(GBookmarkFile* bookmark, gchar* uri, gchar** groups, gsize length) c_g_bookmark_file_set_groups; 2437 void function(GBookmarkFile* bookmark, gchar* uri, time_t modified) c_g_bookmark_file_set_modified; 2438 void function(GBookmarkFile* bookmark, gchar* uri, time_t visited) c_g_bookmark_file_set_visited; 2439 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* name, gchar* exec, gint count, time_t stamp, GError** error) c_g_bookmark_file_set_app_info; 2440 void function(GBookmarkFile* bookmark, gchar* uri, gchar* group) c_g_bookmark_file_add_group; 2441 void function(GBookmarkFile* bookmark, gchar* uri, gchar* name, gchar* exec) c_g_bookmark_file_add_application; 2442 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* group, GError** error) c_g_bookmark_file_remove_group; 2443 gboolean function(GBookmarkFile* bookmark, gchar* uri, gchar* name, GError** error) c_g_bookmark_file_remove_application; 2444 gboolean function(GBookmarkFile* bookmark, gchar* uri, GError** error) c_g_bookmark_file_remove_item; 2445 gboolean function(GBookmarkFile* bookmark, gchar* oldUri, gchar* newUri, GError** error) c_g_bookmark_file_move_item; 2446 2447 // glib.WindowsUtils 2448 2449 gchar* function(gint error) c_g_win32_error_message; 2450 gchar* function() c_g_win32_getlocale; 2451 gchar* function(void* hmodule) c_g_win32_get_package_installation_directory_of_module; 2452 guint function() c_g_win32_get_windows_version; 2453 gchar* function(gchar* utf8filename) c_g_win32_locale_filename_from_utf8; 2454 2455 // glib.MemorySlice 2456 2457 gpointer function(gsize blockSize) c_g_slice_alloc; 2458 gpointer function(gsize blockSize) c_g_slice_alloc0; 2459 gpointer function(gsize blockSize, void* memBlock) c_g_slice_copy; 2460 void function(gsize blockSize, void* memBlock) c_g_slice_free1; 2461 void function(gsize blockSize, void* memChain, gsize nextOffset) c_g_slice_free_chain_with_offset; 2462 2463 // glib.MemoryChunk 2464 2465 GMemChunk* function(gchar* name, gint atomSize, gsize areaSize, gint type) c_g_mem_chunk_new; 2466 gpointer function(GMemChunk* memChunk) c_g_mem_chunk_alloc; 2467 gpointer function(GMemChunk* memChunk) c_g_mem_chunk_alloc0; 2468 void function(GMemChunk* memChunk, void* mem) c_g_mem_chunk_free; 2469 void function(GMemChunk* memChunk) c_g_mem_chunk_destroy; 2470 void function(GMemChunk* memChunk) c_g_mem_chunk_reset; 2471 void function(GMemChunk* memChunk) c_g_mem_chunk_clean; 2472 void function() c_g_blow_chunks; 2473 void function() c_g_mem_chunk_info; 2474 void function(GMemChunk* memChunk) c_g_mem_chunk_print; 2475 2476 // glib.ListG 2477 2478 GList* function(GList* list, void* data) c_g_list_append; 2479 GList* function(GList* list, void* data) c_g_list_prepend; 2480 GList* function(GList* list, void* data, gint position) c_g_list_insert; 2481 GList* function(GList* list, GList* sibling, void* data) c_g_list_insert_before; 2482 GList* function(GList* list, void* data, GCompareFunc func) c_g_list_insert_sorted; 2483 GList* function(GList* list, void* data) c_g_list_remove; 2484 GList* function(GList* list, GList* llink) c_g_list_remove_link; 2485 GList* function(GList* list, GList* link) c_g_list_delete_link; 2486 GList* function(GList* list, void* data) c_g_list_remove_all; 2487 void function(GList* list) c_g_list_free; 2488 void function(GList* list, GDestroyNotify freeFunc) c_g_list_free_full; 2489 GList* function() c_g_list_alloc; 2490 void function(GList* list) c_g_list_free_1; 2491 guint function(GList* list) c_g_list_length; 2492 GList* function(GList* list) c_g_list_copy; 2493 GList* function(GList* list) c_g_list_reverse; 2494 GList* function(GList* list, GCompareFunc compareFunc) c_g_list_sort; 2495 GList* function(GList* list, void* data, GCompareDataFunc func, void* userData) c_g_list_insert_sorted_with_data; 2496 GList* function(GList* list, GCompareDataFunc compareFunc, void* userData) c_g_list_sort_with_data; 2497 GList* function(GList* list1, GList* list2) c_g_list_concat; 2498 void function(GList* list, GFunc func, void* userData) c_g_list_foreach; 2499 GList* function(GList* list) c_g_list_first; 2500 GList* function(GList* list) c_g_list_last; 2501 GList* function(GList* list, guint n) c_g_list_nth; 2502 gpointer function(GList* list, guint n) c_g_list_nth_data; 2503 GList* function(GList* list, guint n) c_g_list_nth_prev; 2504 GList* function(GList* list, void* data) c_g_list_find; 2505 GList* function(GList* list, void* data, GCompareFunc func) c_g_list_find_custom; 2506 gint function(GList* list, GList* llink) c_g_list_position; 2507 gint function(GList* list, void* data) c_g_list_index; 2508 void function(void* allocator) c_g_list_push_allocator; 2509 void function() c_g_list_pop_allocator; 2510 2511 // glib.ListSG 2512 2513 GSList* function() c_g_slist_alloc; 2514 GSList* function(GSList* list, void* data) c_g_slist_append; 2515 GSList* function(GSList* list, void* data) c_g_slist_prepend; 2516 GSList* function(GSList* list, void* data, gint position) c_g_slist_insert; 2517 GSList* function(GSList* slist, GSList* sibling, void* data) c_g_slist_insert_before; 2518 GSList* function(GSList* list, void* data, GCompareFunc func) c_g_slist_insert_sorted; 2519 GSList* function(GSList* list, void* data) c_g_slist_remove; 2520 GSList* function(GSList* list, GSList* link) c_g_slist_remove_link; 2521 GSList* function(GSList* list, GSList* link) c_g_slist_delete_link; 2522 GSList* function(GSList* list, void* data) c_g_slist_remove_all; 2523 void function(GSList* list) c_g_slist_free; 2524 void function(GSList* list, GDestroyNotify freeFunc) c_g_slist_free_full; 2525 void function(GSList* list) c_g_slist_free_1; 2526 guint function(GSList* list) c_g_slist_length; 2527 GSList* function(GSList* list) c_g_slist_copy; 2528 GSList* function(GSList* list) c_g_slist_reverse; 2529 GSList* function(GSList* list, void* data, GCompareDataFunc func, void* userData) c_g_slist_insert_sorted_with_data; 2530 GSList* function(GSList* list, GCompareFunc compareFunc) c_g_slist_sort; 2531 GSList* function(GSList* list, GCompareDataFunc compareFunc, void* userData) c_g_slist_sort_with_data; 2532 GSList* function(GSList* list1, GSList* list2) c_g_slist_concat; 2533 void function(GSList* list, GFunc func, void* userData) c_g_slist_foreach; 2534 GSList* function(GSList* list) c_g_slist_last; 2535 GSList* function(GSList* list, guint n) c_g_slist_nth; 2536 gpointer function(GSList* list, guint n) c_g_slist_nth_data; 2537 GSList* function(GSList* list, void* data) c_g_slist_find; 2538 GSList* function(GSList* list, void* data, GCompareFunc func) c_g_slist_find_custom; 2539 gint function(GSList* list, GSList* llink) c_g_slist_position; 2540 gint function(GSList* list, void* data) c_g_slist_index; 2541 void function(void* dummy) c_g_slist_push_allocator; 2542 void function() c_g_slist_pop_allocator; 2543 2544 // glib.QueueG 2545 2546 GQueue* function() c_g_queue_new; 2547 void function(GQueue* queue) c_g_queue_free; 2548 void function(GQueue* queue) c_g_queue_init; 2549 void function(GQueue* queue) c_g_queue_clear; 2550 gboolean function(GQueue* queue) c_g_queue_is_empty; 2551 guint function(GQueue* queue) c_g_queue_get_length; 2552 void function(GQueue* queue) c_g_queue_reverse; 2553 GQueue* function(GQueue* queue) c_g_queue_copy; 2554 void function(GQueue* queue, GFunc func, void* userData) c_g_queue_foreach; 2555 GList* function(GQueue* queue, void* data) c_g_queue_find; 2556 GList* function(GQueue* queue, void* data, GCompareFunc func) c_g_queue_find_custom; 2557 void function(GQueue* queue, GCompareDataFunc compareFunc, void* userData) c_g_queue_sort; 2558 void function(GQueue* queue, void* data) c_g_queue_push_head; 2559 void function(GQueue* queue, void* data) c_g_queue_push_tail; 2560 void function(GQueue* queue, void* data, gint n) c_g_queue_push_nth; 2561 gpointer function(GQueue* queue) c_g_queue_pop_head; 2562 gpointer function(GQueue* queue) c_g_queue_pop_tail; 2563 gpointer function(GQueue* queue, guint n) c_g_queue_pop_nth; 2564 gpointer function(GQueue* queue) c_g_queue_peek_head; 2565 gpointer function(GQueue* queue) c_g_queue_peek_tail; 2566 gpointer function(GQueue* queue, guint n) c_g_queue_peek_nth; 2567 gint function(GQueue* queue, void* data) c_g_queue_index; 2568 void function(GQueue* queue, void* data) c_g_queue_remove; 2569 void function(GQueue* queue, void* data) c_g_queue_remove_all; 2570 void function(GQueue* queue, GList* sibling, void* data) c_g_queue_insert_before; 2571 void function(GQueue* queue, GList* sibling, void* data) c_g_queue_insert_after; 2572 void function(GQueue* queue, void* data, GCompareDataFunc func, void* userData) c_g_queue_insert_sorted; 2573 void function(GQueue* queue, GList* link) c_g_queue_push_head_link; 2574 void function(GQueue* queue, GList* link) c_g_queue_push_tail_link; 2575 void function(GQueue* queue, gint n, GList* link) c_g_queue_push_nth_link; 2576 GList* function(GQueue* queue) c_g_queue_pop_head_link; 2577 GList* function(GQueue* queue) c_g_queue_pop_tail_link; 2578 GList* function(GQueue* queue, guint n) c_g_queue_pop_nth_link; 2579 GList* function(GQueue* queue) c_g_queue_peek_head_link; 2580 GList* function(GQueue* queue) c_g_queue_peek_tail_link; 2581 GList* function(GQueue* queue, guint n) c_g_queue_peek_nth_link; 2582 gint function(GQueue* queue, GList* link) c_g_queue_link_index; 2583 void function(GQueue* queue, GList* link) c_g_queue_unlink; 2584 void function(GQueue* queue, GList* link) c_g_queue_delete_link; 2585 2586 // glib.Sequence 2587 2588 GSequence* function(GDestroyNotify dataDestroy) c_g_sequence_new; 2589 void function(GSequence* seq) c_g_sequence_free; 2590 gint function(GSequence* seq) c_g_sequence_get_length; 2591 void function(GSequence* seq, GFunc func, void* userData) c_g_sequence_foreach; 2592 void function(GSequenceIter* begin, GSequenceIter* end, GFunc func, void* userData) c_g_sequence_foreach_range; 2593 void function(GSequence* seq, GCompareDataFunc cmpFunc, void* cmpData) c_g_sequence_sort; 2594 void function(GSequence* seq, GSequenceIterCompareFunc cmpFunc, void* cmpData) c_g_sequence_sort_iter; 2595 GSequenceIter* function(GSequence* seq) c_g_sequence_get_begin_iter; 2596 GSequenceIter* function(GSequence* seq) c_g_sequence_get_end_iter; 2597 GSequenceIter* function(GSequence* seq, gint pos) c_g_sequence_get_iter_at_pos; 2598 GSequenceIter* function(GSequence* seq, void* data) c_g_sequence_append; 2599 GSequenceIter* function(GSequence* seq, void* data) c_g_sequence_prepend; 2600 GSequenceIter* function(GSequenceIter* iter, void* data) c_g_sequence_insert_before; 2601 void function(GSequenceIter* src, GSequenceIter* dest) c_g_sequence_move; 2602 void function(GSequenceIter* a, GSequenceIter* b) c_g_sequence_swap; 2603 GSequenceIter* function(GSequence* seq, void* data, GCompareDataFunc cmpFunc, void* cmpData) c_g_sequence_insert_sorted; 2604 GSequenceIter* function(GSequence* seq, void* data, GSequenceIterCompareFunc iterCmp, void* cmpData) c_g_sequence_insert_sorted_iter; 2605 void function(GSequenceIter* iter, GCompareDataFunc cmpFunc, void* cmpData) c_g_sequence_sort_changed; 2606 void function(GSequenceIter* iter, GSequenceIterCompareFunc iterCmp, void* cmpData) c_g_sequence_sort_changed_iter; 2607 void function(GSequenceIter* iter) c_g_sequence_remove; 2608 void function(GSequenceIter* begin, GSequenceIter* end) c_g_sequence_remove_range; 2609 void function(GSequenceIter* dest, GSequenceIter* begin, GSequenceIter* end) c_g_sequence_move_range; 2610 GSequenceIter* function(GSequence* seq, void* data, GCompareDataFunc cmpFunc, void* cmpData) c_g_sequence_search; 2611 GSequenceIter* function(GSequence* seq, void* data, GSequenceIterCompareFunc iterCmp, void* cmpData) c_g_sequence_search_iter; 2612 GSequenceIter* function(GSequence* seq, void* data, GCompareDataFunc cmpFunc, void* cmpData) c_g_sequence_lookup; 2613 GSequenceIter* function(GSequence* seq, void* data, GSequenceIterCompareFunc iterCmp, void* cmpData) c_g_sequence_lookup_iter; 2614 gpointer function(GSequenceIter* iter) c_g_sequence_get; 2615 void function(GSequenceIter* iter, void* data) c_g_sequence_set; 2616 GSequenceIter* function(GSequenceIter* begin, GSequenceIter* end) c_g_sequence_range_get_midpoint; 2617 2618 // glib.SequenceIter 2619 2620 gboolean function(GSequenceIter* iter) c_g_sequence_iter_is_begin; 2621 gboolean function(GSequenceIter* iter) c_g_sequence_iter_is_end; 2622 GSequenceIter* function(GSequenceIter* iter) c_g_sequence_iter_next; 2623 GSequenceIter* function(GSequenceIter* iter) c_g_sequence_iter_prev; 2624 gint function(GSequenceIter* iter) c_g_sequence_iter_get_position; 2625 GSequenceIter* function(GSequenceIter* iter, gint delta) c_g_sequence_iter_move; 2626 GSequence* function(GSequenceIter* iter) c_g_sequence_iter_get_sequence; 2627 gint function(GSequenceIter* a, GSequenceIter* b) c_g_sequence_iter_compare; 2628 2629 // glib.TrashStack 2630 2631 void function(GTrashStack** stackP, void* dataP) c_g_trash_stack_push; 2632 gpointer function(GTrashStack** stackP) c_g_trash_stack_pop; 2633 gpointer function(GTrashStack** stackP) c_g_trash_stack_peek; 2634 guint function(GTrashStack** stackP) c_g_trash_stack_height; 2635 2636 // glib.HashTable 2637 2638 GHashTable* function(GHashFunc hashFunc, GEqualFunc keyEqualFunc) c_g_hash_table_new; 2639 GHashTable* function(GHashFunc hashFunc, GEqualFunc keyEqualFunc, GDestroyNotify keyDestroyFunc, GDestroyNotify valueDestroyFunc) c_g_hash_table_new_full; 2640 void function(GHashTable* hashTable, void* key, void* value) c_g_hash_table_insert; 2641 void function(GHashTable* hashTable, void* key, void* value) c_g_hash_table_replace; 2642 guint function(GHashTable* hashTable) c_g_hash_table_size; 2643 gpointer function(GHashTable* hashTable, void* key) c_g_hash_table_lookup; 2644 gboolean function(GHashTable* hashTable, void* lookupKey, void** origKey, void** value) c_g_hash_table_lookup_extended; 2645 void function(GHashTable* hashTable, GHFunc func, void* userData) c_g_hash_table_foreach; 2646 gpointer function(GHashTable* hashTable, GHRFunc predicate, void* userData) c_g_hash_table_find; 2647 gboolean function(GHashTable* hashTable, void* key) c_g_hash_table_remove; 2648 gboolean function(GHashTable* hashTable, void* key) c_g_hash_table_steal; 2649 guint function(GHashTable* hashTable, GHRFunc func, void* userData) c_g_hash_table_foreach_remove; 2650 guint function(GHashTable* hashTable, GHRFunc func, void* userData) c_g_hash_table_foreach_steal; 2651 void function(GHashTable* hashTable) c_g_hash_table_remove_all; 2652 void function(GHashTable* hashTable) c_g_hash_table_steal_all; 2653 GList* function(GHashTable* hashTable) c_g_hash_table_get_keys; 2654 GList* function(GHashTable* hashTable) c_g_hash_table_get_values; 2655 void function(GHashTable* hashTable) c_g_hash_table_destroy; 2656 GHashTable* function(GHashTable* hashTable) c_g_hash_table_ref; 2657 void function(GHashTable* hashTable) c_g_hash_table_unref; 2658 gboolean function(void* v1, void* v2) c_g_direct_equal; 2659 guint function(void* v) c_g_direct_hash; 2660 gboolean function(void* v1, void* v2) c_g_int_equal; 2661 guint function(void* v) c_g_int_hash; 2662 gboolean function(void* v1, void* v2) c_g_int64_equal; 2663 guint function(void* v) c_g_int64_hash; 2664 gboolean function(void* v1, void* v2) c_g_double_equal; 2665 guint function(void* v) c_g_double_hash; 2666 gboolean function(void* v1, void* v2) c_g_str_equal; 2667 guint function(void* v) c_g_str_hash; 2668 2669 // glib.HashTableIter 2670 2671 void function(GHashTableIter* iter, GHashTable* hashTable) c_g_hash_table_iter_init; 2672 gboolean function(GHashTableIter* iter, void** key, void** value) c_g_hash_table_iter_next; 2673 GHashTable* function(GHashTableIter* iter) c_g_hash_table_iter_get_hash_table; 2674 void function(GHashTableIter* iter) c_g_hash_table_iter_remove; 2675 void function(GHashTableIter* iter) c_g_hash_table_iter_steal; 2676 2677 // glib.StringG 2678 2679 GString* function(gchar* init) c_g_string_new; 2680 GString* function(gchar* init, gssize len) c_g_string_new_len; 2681 GString* function(gsize dflSize) c_g_string_sized_new; 2682 GString* function(GString* string, gchar* rval) c_g_string_assign; 2683 void function(GString* string, gchar* format, va_list args) c_g_string_vprintf; 2684 void function(GString* string, gchar* format, va_list args) c_g_string_append_vprintf; 2685 void function(GString* string, gchar* format, ... ) c_g_string_printf; 2686 void function(GString* string, gchar* format, ... ) c_g_string_append_printf; 2687 GString* function(GString* string, gchar* val) c_g_string_append; 2688 GString* function(GString* string, gchar c) c_g_string_append_c; 2689 GString* function(GString* string, gunichar wc) c_g_string_append_unichar; 2690 GString* function(GString* string, gchar* val, gssize len) c_g_string_append_len; 2691 GString* function(GString* string, char* unescaped, char* reservedCharsAllowed, gboolean allowUtf8) c_g_string_append_uri_escaped; 2692 GString* function(GString* string, gchar* val) c_g_string_prepend; 2693 GString* function(GString* string, gchar c) c_g_string_prepend_c; 2694 GString* function(GString* string, gunichar wc) c_g_string_prepend_unichar; 2695 GString* function(GString* string, gchar* val, gssize len) c_g_string_prepend_len; 2696 GString* function(GString* string, gssize pos, gchar* val) c_g_string_insert; 2697 GString* function(GString* string, gssize pos, gchar c) c_g_string_insert_c; 2698 GString* function(GString* string, gssize pos, gunichar wc) c_g_string_insert_unichar; 2699 GString* function(GString* string, gssize pos, gchar* val, gssize len) c_g_string_insert_len; 2700 GString* function(GString* string, gsize pos, gchar* val) c_g_string_overwrite; 2701 GString* function(GString* string, gsize pos, gchar* val, gssize len) c_g_string_overwrite_len; 2702 GString* function(GString* string, gssize pos, gssize len) c_g_string_erase; 2703 GString* function(GString* string, gsize len) c_g_string_truncate; 2704 GString* function(GString* string, gsize len) c_g_string_set_size; 2705 gchar* function(GString* string, gboolean freeSegment) c_g_string_free; 2706 GString* function(GString* string) c_g_string_up; 2707 GString* function(GString* string) c_g_string_down; 2708 guint function(GString* str) c_g_string_hash; 2709 gboolean function(GString* v, GString* v2) c_g_string_equal; 2710 2711 // glib.StringGChunk 2712 2713 GStringChunk* function(gsize size) c_g_string_chunk_new; 2714 gchar* function(GStringChunk* chunk, gchar* string) c_g_string_chunk_insert; 2715 gchar* function(GStringChunk* chunk, gchar* string) c_g_string_chunk_insert_const; 2716 gchar* function(GStringChunk* chunk, gchar* string, gssize len) c_g_string_chunk_insert_len; 2717 void function(GStringChunk* chunk) c_g_string_chunk_clear; 2718 void function(GStringChunk* chunk) c_g_string_chunk_free; 2719 2720 // glib.ArrayG 2721 2722 GArray* function(gboolean zeroTerminated, gboolean clear, guint elementSize) c_g_array_new; 2723 GArray* function(gboolean zeroTerminated, gboolean clear, guint elementSize, guint reservedSize) c_g_array_sized_new; 2724 GArray* function(GArray* array) c_g_array_ref; 2725 void function(GArray* array) c_g_array_unref; 2726 guint function(GArray* array) c_g_array_get_element_size; 2727 GArray* function(GArray* array, void* data, guint len) c_g_array_append_vals; 2728 GArray* function(GArray* array, void* data, guint len) c_g_array_prepend_vals; 2729 GArray* function(GArray* array, guint index, void* data, guint len) c_g_array_insert_vals; 2730 GArray* function(GArray* array, guint index) c_g_array_remove_index; 2731 GArray* function(GArray* array, guint index) c_g_array_remove_index_fast; 2732 GArray* function(GArray* array, guint index, guint length) c_g_array_remove_range; 2733 void function(GArray* array, GCompareFunc compareFunc) c_g_array_sort; 2734 void function(GArray* array, GCompareDataFunc compareFunc, void* userData) c_g_array_sort_with_data; 2735 GArray* function(GArray* array, guint length) c_g_array_set_size; 2736 gchar* function(GArray* array, gboolean freeSegment) c_g_array_free; 2737 2738 // glib.PtrArray 2739 2740 GPtrArray* function() c_g_ptr_array_new; 2741 GPtrArray* function(guint reservedSize) c_g_ptr_array_sized_new; 2742 GPtrArray* function(GDestroyNotify elementFreeFunc) c_g_ptr_array_new_with_free_func; 2743 void function(GPtrArray* array, GDestroyNotify elementFreeFunc) c_g_ptr_array_set_free_func; 2744 GPtrArray* function(GPtrArray* array) c_g_ptr_array_ref; 2745 void function(GPtrArray* array) c_g_ptr_array_unref; 2746 void function(GPtrArray* array, void* data) c_g_ptr_array_add; 2747 gboolean function(GPtrArray* array, void* data) c_g_ptr_array_remove; 2748 gpointer function(GPtrArray* array, guint index) c_g_ptr_array_remove_index; 2749 gboolean function(GPtrArray* array, void* data) c_g_ptr_array_remove_fast; 2750 gpointer function(GPtrArray* array, guint index) c_g_ptr_array_remove_index_fast; 2751 void function(GPtrArray* array, guint index, guint length) c_g_ptr_array_remove_range; 2752 void function(GPtrArray* array, GCompareFunc compareFunc) c_g_ptr_array_sort; 2753 void function(GPtrArray* array, GCompareDataFunc compareFunc, void* userData) c_g_ptr_array_sort_with_data; 2754 void function(GPtrArray* array, gint length) c_g_ptr_array_set_size; 2755 gpointer* function(GPtrArray* array, gboolean freeSeg) c_g_ptr_array_free; 2756 void function(GPtrArray* array, GFunc func, void* userData) c_g_ptr_array_foreach; 2757 2758 // glib.ByteArray 2759 2760 GByteArray* function() c_g_byte_array_new; 2761 GByteArray* function(guint reservedSize) c_g_byte_array_sized_new; 2762 GByteArray* function(GByteArray* array) c_g_byte_array_ref; 2763 void function(GByteArray* array) c_g_byte_array_unref; 2764 GByteArray* function(GByteArray* array, guint8* data, guint len) c_g_byte_array_append; 2765 GByteArray* function(GByteArray* array, guint8* data, guint len) c_g_byte_array_prepend; 2766 GByteArray* function(GByteArray* array, guint index) c_g_byte_array_remove_index; 2767 GByteArray* function(GByteArray* array, guint index) c_g_byte_array_remove_index_fast; 2768 GByteArray* function(GByteArray* array, guint index, guint length) c_g_byte_array_remove_range; 2769 void function(GByteArray* array, GCompareFunc compareFunc) c_g_byte_array_sort; 2770 void function(GByteArray* array, GCompareDataFunc compareFunc, void* userData) c_g_byte_array_sort_with_data; 2771 GByteArray* function(GByteArray* array, guint length) c_g_byte_array_set_size; 2772 guint8* function(GByteArray* array, gboolean freeSegment) c_g_byte_array_free; 2773 2774 // glib.BBTree 2775 2776 GTree* function(GCompareFunc keyCompareFunc) c_g_tree_new; 2777 GTree* function(GTree* tree) c_g_tree_ref; 2778 void function(GTree* tree) c_g_tree_unref; 2779 GTree* function(GCompareDataFunc keyCompareFunc, void* keyCompareData) c_g_tree_new_with_data; 2780 GTree* function(GCompareDataFunc keyCompareFunc, void* keyCompareData, GDestroyNotify keyDestroyFunc, GDestroyNotify valueDestroyFunc) c_g_tree_new_full; 2781 void function(GTree* tree, void* key, void* value) c_g_tree_insert; 2782 void function(GTree* tree, void* key, void* value) c_g_tree_replace; 2783 gint function(GTree* tree) c_g_tree_nnodes; 2784 gint function(GTree* tree) c_g_tree_height; 2785 gpointer function(GTree* tree, void* key) c_g_tree_lookup; 2786 gboolean function(GTree* tree, void* lookupKey, void** origKey, void** value) c_g_tree_lookup_extended; 2787 void function(GTree* tree, GTraverseFunc func, void* userData) c_g_tree_foreach; 2788 void function(GTree* tree, GTraverseFunc traverseFunc, GTraverseType traverseType, void* userData) c_g_tree_traverse; 2789 gpointer function(GTree* tree, GCompareFunc searchFunc, void* userData) c_g_tree_search; 2790 gboolean function(GTree* tree, void* key) c_g_tree_remove; 2791 gboolean function(GTree* tree, void* key) c_g_tree_steal; 2792 void function(GTree* tree) c_g_tree_destroy; 2793 2794 // glib.Node 2795 2796 GNode* function(void* data) c_g_node_new; 2797 GNode* function(GNode* node) c_g_node_copy; 2798 GNode* function(GNode* node, GCopyFunc copyFunc, void* data) c_g_node_copy_deep; 2799 GNode* function(GNode* parent, gint position, GNode* node) c_g_node_insert; 2800 GNode* function(GNode* parent, GNode* sibling, GNode* node) c_g_node_insert_before; 2801 GNode* function(GNode* parent, GNode* sibling, GNode* node) c_g_node_insert_after; 2802 GNode* function(GNode* parent, GNode* node) c_g_node_prepend; 2803 void function(GNode* node) c_g_node_reverse_children; 2804 void function(GNode* root, GTraverseType order, GTraverseFlags flags, gint maxDepth, GNodeTraverseFunc func, void* data) c_g_node_traverse; 2805 void function(GNode* node, GTraverseFlags flags, GNodeForeachFunc func, void* data) c_g_node_children_foreach; 2806 GNode* function(GNode* node) c_g_node_get_root; 2807 GNode* function(GNode* root, GTraverseType order, GTraverseFlags flags, void* data) c_g_node_find; 2808 GNode* function(GNode* node, GTraverseFlags flags, void* data) c_g_node_find_child; 2809 gint function(GNode* node, void* data) c_g_node_child_index; 2810 gint function(GNode* node, GNode* child) c_g_node_child_position; 2811 GNode* function(GNode* node) c_g_node_last_child; 2812 GNode* function(GNode* node, guint n) c_g_node_nth_child; 2813 GNode* function(GNode* node) c_g_node_first_sibling; 2814 GNode* function(GNode* node) c_g_node_last_sibling; 2815 guint function(GNode* node) c_g_node_depth; 2816 guint function(GNode* root, GTraverseFlags flags) c_g_node_n_nodes; 2817 guint function(GNode* node) c_g_node_n_children; 2818 gboolean function(GNode* node, GNode* descendant) c_g_node_is_ancestor; 2819 guint function(GNode* root) c_g_node_max_height; 2820 void function(GNode* node) c_g_node_unlink; 2821 void function(GNode* root) c_g_node_destroy; 2822 void function(void* dummy) c_g_node_push_allocator; 2823 void function() c_g_node_pop_allocator; 2824 2825 // glib.Quark 2826 2827 GQuark function(gchar* string) c_g_quark_from_string; 2828 GQuark function(gchar* string) c_g_quark_from_static_string; 2829 gchar* function(GQuark quark) c_g_quark_to_string; 2830 GQuark function(gchar* string) c_g_quark_try_string; 2831 gchar* function(gchar* string) c_g_intern_string; 2832 gchar* function(gchar* string) c_g_intern_static_string; 2833 2834 // glib.DataList 2835 2836 void function(GData** datalist) c_g_datalist_init; 2837 void function(GData** datalist, GQuark keyId, void* data, GDestroyNotify destroyFunc) c_g_datalist_id_set_data_full; 2838 gpointer function(GData** datalist, GQuark keyId) c_g_datalist_id_get_data; 2839 gpointer function(GData** datalist, GQuark keyId) c_g_datalist_id_remove_no_notify; 2840 void function(GData** datalist, GDataForeachFunc func, void* userData) c_g_datalist_foreach; 2841 void function(GData** datalist) c_g_datalist_clear; 2842 void function(GData** datalist, guint flags) c_g_datalist_set_flags; 2843 void function(GData** datalist, guint flags) c_g_datalist_unset_flags; 2844 guint function(GData** datalist) c_g_datalist_get_flags; 2845 2846 // glib.Dataset 2847 2848 void function(void* datasetLocation, GQuark keyId, void* data, GDestroyNotify destroyFunc) c_g_dataset_id_set_data_full; 2849 gpointer function(void* datasetLocation, GQuark keyId) c_g_dataset_id_get_data; 2850 gpointer function(void* datasetLocation, GQuark keyId) c_g_dataset_id_remove_no_notify; 2851 void function(void* datasetLocation, GDataForeachFunc func, void* userData) c_g_dataset_foreach; 2852 void function(void* datasetLocation) c_g_dataset_destroy; 2853 2854 // glib.Relation 2855 2856 GRelation* function(gint fields) c_g_relation_new; 2857 void function(GRelation* relation, gint field, GHashFunc hashFunc, GEqualFunc keyEqualFunc) c_g_relation_index; 2858 void function(GRelation* relation, ... ) c_g_relation_insert; 2859 gboolean function(GRelation* relation, ... ) c_g_relation_exists; 2860 gint function(GRelation* relation, void* key, gint field) c_g_relation_count; 2861 GTuples* function(GRelation* relation, void* key, gint field) c_g_relation_select; 2862 gint function(GRelation* relation, void* key, gint field) c_g_relation_delete; 2863 void function(GRelation* relation) c_g_relation_destroy; 2864 void function(GRelation* relation) c_g_relation_print; 2865 2866 // glib.Tuples 2867 2868 void function(GTuples* tuples) c_g_tuples_destroy; 2869 gpointer function(GTuples* tuples, gint index, gint field) c_g_tuples_index; 2870 2871 // glib.Cache 2872 2873 GCache* function(GCacheNewFunc valueNewFunc, GCacheDestroyFunc valueDestroyFunc, GCacheDupFunc keyDupFunc, GCacheDestroyFunc keyDestroyFunc, GHashFunc hashKeyFunc, GHashFunc hashValueFunc, GEqualFunc keyEqualFunc) c_g_cache_new; 2874 gpointer function(GCache* cache, void* key) c_g_cache_insert; 2875 void function(GCache* cache, void* value) c_g_cache_remove; 2876 void function(GCache* cache) c_g_cache_destroy; 2877 void function(GCache* cache, GHFunc func, void* userData) c_g_cache_key_foreach; 2878 void function(GCache* cache, GHFunc func, void* userData) c_g_cache_value_foreach; 2879 2880 // glib.Allocator 2881 2882 GAllocator* function(gchar* name, guint nPreallocs) c_g_allocator_new; 2883 void function(GAllocator* allocator) c_g_allocator_free; 2884 2885 // glib.VariantType 2886 2887 void function(GVariantType* type) c_g_variant_type_free; 2888 GVariantType* function(GVariantType* type) c_g_variant_type_copy; 2889 GVariantType* function(gchar* typeString) c_g_variant_type_new; 2890 gboolean function(gchar* typeString) c_g_variant_type_string_is_valid; 2891 gboolean function(gchar* str, gchar* limit, gchar** endptr) c_g_variant_type_string_scan; 2892 gsize function(GVariantType* type) c_g_variant_type_get_string_length; 2893 gchar* function(GVariantType* type) c_g_variant_type_peek_string; 2894 gchar* function(GVariantType* type) c_g_variant_type_dup_string; 2895 gboolean function(GVariantType* type) c_g_variant_type_is_definite; 2896 gboolean function(GVariantType* type) c_g_variant_type_is_container; 2897 gboolean function(GVariantType* type) c_g_variant_type_is_basic; 2898 gboolean function(GVariantType* type) c_g_variant_type_is_maybe; 2899 gboolean function(GVariantType* type) c_g_variant_type_is_array; 2900 gboolean function(GVariantType* type) c_g_variant_type_is_tuple; 2901 gboolean function(GVariantType* type) c_g_variant_type_is_dict_entry; 2902 gboolean function(GVariantType* type) c_g_variant_type_is_variant; 2903 guint function(void* type) c_g_variant_type_hash; 2904 gboolean function(void* type1, void* type2) c_g_variant_type_equal; 2905 gboolean function(GVariantType* type, GVariantType* supertype) c_g_variant_type_is_subtype_of; 2906 GVariantType* function(GVariantType* element) c_g_variant_type_new_maybe; 2907 GVariantType* function(GVariantType* element) c_g_variant_type_new_array; 2908 GVariantType* function(GVariantType** items, gint length) c_g_variant_type_new_tuple; 2909 GVariantType* function(GVariantType* key, GVariantType* value) c_g_variant_type_new_dict_entry; 2910 GVariantType* function(GVariantType* type) c_g_variant_type_element; 2911 gsize function(GVariantType* type) c_g_variant_type_n_items; 2912 GVariantType* function(GVariantType* type) c_g_variant_type_first; 2913 GVariantType* function(GVariantType* type) c_g_variant_type_next; 2914 GVariantType* function(GVariantType* type) c_g_variant_type_key; 2915 GVariantType* function(GVariantType* type) c_g_variant_type_value; 2916 2917 // glib.Variant 2918 2919 void function(GVariant* value) c_g_variant_unref; 2920 GVariant* function(GVariant* value) c_g_variant_ref; 2921 GVariant* function(GVariant* value) c_g_variant_ref_sink; 2922 gboolean function(GVariant* value) c_g_variant_is_floating; 2923 GVariantType* function(GVariant* value) c_g_variant_get_type; 2924 gchar* function(GVariant* value) c_g_variant_get_type_string; 2925 gboolean function(GVariant* value, GVariantType* type) c_g_variant_is_of_type; 2926 gboolean function(GVariant* value) c_g_variant_is_container; 2927 gint function(void* one, void* two) c_g_variant_compare; 2928 GVariantClass function(GVariant* value) c_g_variant_classify; 2929 void function(GVariant* value, gchar* formatString, ... ) c_g_variant_get; 2930 void function(GVariant* value, gchar* formatString, gchar** endptr, va_list* app) c_g_variant_get_va; 2931 GVariant* function(gchar* formatString, ... ) c_g_variant_new; 2932 GVariant* function(gchar* formatString, gchar** endptr, va_list* app) c_g_variant_new_va; 2933 GVariant* function(gboolean value) c_g_variant_new_boolean; 2934 GVariant* function(guchar value) c_g_variant_new_byte; 2935 GVariant* function(gint16 value) c_g_variant_new_int16; 2936 GVariant* function(guint16 value) c_g_variant_new_uint16; 2937 GVariant* function(gint32 value) c_g_variant_new_int32; 2938 GVariant* function(guint32 value) c_g_variant_new_uint32; 2939 GVariant* function(gint64 value) c_g_variant_new_int64; 2940 GVariant* function(guint64 value) c_g_variant_new_uint64; 2941 GVariant* function(gint32 value) c_g_variant_new_handle; 2942 GVariant* function(gdouble value) c_g_variant_new_double; 2943 GVariant* function(gchar* string) c_g_variant_new_string; 2944 GVariant* function(gchar* objectPath) c_g_variant_new_object_path; 2945 gboolean function(gchar* string) c_g_variant_is_object_path; 2946 GVariant* function(gchar* signature) c_g_variant_new_signature; 2947 gboolean function(gchar* string) c_g_variant_is_signature; 2948 GVariant* function(GVariant* value) c_g_variant_new_variant; 2949 GVariant* function(gchar** strv, gssize length) c_g_variant_new_strv; 2950 GVariant* function(gchar* string) c_g_variant_new_bytestring; 2951 GVariant* function(gchar** strv, gssize length) c_g_variant_new_bytestring_array; 2952 gboolean function(GVariant* value) c_g_variant_get_boolean; 2953 guchar function(GVariant* value) c_g_variant_get_byte; 2954 gint16 function(GVariant* value) c_g_variant_get_int16; 2955 guint16 function(GVariant* value) c_g_variant_get_uint16; 2956 gint32 function(GVariant* value) c_g_variant_get_int32; 2957 guint32 function(GVariant* value) c_g_variant_get_uint32; 2958 gint64 function(GVariant* value) c_g_variant_get_int64; 2959 guint64 function(GVariant* value) c_g_variant_get_uint64; 2960 gint32 function(GVariant* value) c_g_variant_get_handle; 2961 gdouble function(GVariant* value) c_g_variant_get_double; 2962 gchar* function(GVariant* value, gsize* length) c_g_variant_get_string; 2963 gchar* function(GVariant* value, gsize* length) c_g_variant_dup_string; 2964 GVariant* function(GVariant* value) c_g_variant_get_variant; 2965 gchar** function(GVariant* value, gsize* length) c_g_variant_get_strv; 2966 gchar** function(GVariant* value, gsize* length) c_g_variant_dup_strv; 2967 gchar* function(GVariant* value) c_g_variant_get_bytestring; 2968 gchar* function(GVariant* value, gsize* length) c_g_variant_dup_bytestring; 2969 gchar** function(GVariant* value, gsize* length) c_g_variant_get_bytestring_array; 2970 gchar** function(GVariant* value, gsize* length) c_g_variant_dup_bytestring_array; 2971 GVariant* function(GVariantType* childType, GVariant* child) c_g_variant_new_maybe; 2972 GVariant* function(GVariantType* childType, GVariant** children, gsize nChildren) c_g_variant_new_array; 2973 GVariant* function(GVariant** children, gsize nChildren) c_g_variant_new_tuple; 2974 GVariant* function(GVariant* key, GVariant* value) c_g_variant_new_dict_entry; 2975 GVariant* function(GVariant* value) c_g_variant_get_maybe; 2976 gsize function(GVariant* value) c_g_variant_n_children; 2977 GVariant* function(GVariant* value, gsize index) c_g_variant_get_child_value; 2978 void function(GVariant* value, gsize index, gchar* formatString, ... ) c_g_variant_get_child; 2979 GVariant* function(GVariant* dictionary, gchar* key, GVariantType* expectedType) c_g_variant_lookup_value; 2980 gboolean function(GVariant* dictionary, gchar* key, gchar* formatString, ... ) c_g_variant_lookup; 2981 gconstpointer function(GVariant* value, gsize* nElements, gsize elementSize) c_g_variant_get_fixed_array; 2982 gsize function(GVariant* value) c_g_variant_get_size; 2983 gconstpointer function(GVariant* value) c_g_variant_get_data; 2984 void function(GVariant* value, void* data) c_g_variant_store; 2985 GVariant* function(GVariantType* type, void* data, gsize size, gboolean trusted, GDestroyNotify notify, void* userData) c_g_variant_new_from_data; 2986 GVariant* function(GVariant* value) c_g_variant_byteswap; 2987 GVariant* function(GVariant* value) c_g_variant_get_normal_form; 2988 gboolean function(GVariant* value) c_g_variant_is_normal_form; 2989 guint function(void* value) c_g_variant_hash; 2990 gboolean function(void* one, void* two) c_g_variant_equal; 2991 gchar* function(GVariant* value, gboolean typeAnnotate) c_g_variant_print; 2992 GString* function(GVariant* value, GString* string, gboolean typeAnnotate) c_g_variant_print_string; 2993 GVariant* function(GVariantType* type, gchar* text, gchar* limit, gchar** endptr, GError** error) c_g_variant_parse; 2994 GVariant* function(gchar* format, va_list* app) c_g_variant_new_parsed_va; 2995 GVariant* function(gchar* format, ... ) c_g_variant_new_parsed; 2996 2997 // glib.VariantIter 2998 2999 GVariantIter* function(GVariantIter* iter) c_g_variant_iter_copy; 3000 void function(GVariantIter* iter) c_g_variant_iter_free; 3001 gsize function(GVariantIter* iter, GVariant* value) c_g_variant_iter_init; 3002 gsize function(GVariantIter* iter) c_g_variant_iter_n_children; 3003 GVariantIter* function(GVariant* value) c_g_variant_iter_new; 3004 GVariant* function(GVariantIter* iter) c_g_variant_iter_next_value; 3005 gboolean function(GVariantIter* iter, gchar* formatString, ... ) c_g_variant_iter_next; 3006 gboolean function(GVariantIter* iter, gchar* formatString, ... ) c_g_variant_iter_loop; 3007 3008 // glib.VariantBuilder 3009 3010 void function(GVariantBuilder* builder) c_g_variant_builder_unref; 3011 GVariantBuilder* function(GVariantBuilder* builder) c_g_variant_builder_ref; 3012 GVariantBuilder* function(GVariantType* type) c_g_variant_builder_new; 3013 void function(GVariantBuilder* builder, GVariantType* type) c_g_variant_builder_init; 3014 void function(GVariantBuilder* builder) c_g_variant_builder_clear; 3015 void function(GVariantBuilder* builder, GVariant* value) c_g_variant_builder_add_value; 3016 void function(GVariantBuilder* builder, gchar* formatString, ... ) c_g_variant_builder_add; 3017 void function(GVariantBuilder* builder, gchar* format, ... ) c_g_variant_builder_add_parsed; 3018 GVariant* function(GVariantBuilder* builder) c_g_variant_builder_end; 3019 void function(GVariantBuilder* builder, GVariantType* type) c_g_variant_builder_open; 3020 void function(GVariantBuilder* builder) c_g_variant_builder_close; 3021 }"); 3022 3023 // glib.Version 3024 3025 alias c_glib_check_version glib_check_version; 3026 3027 // glib.Atomic 3028 3029 alias c_g_atomic_int_get g_atomic_int_get; 3030 alias c_g_atomic_int_set g_atomic_int_set; 3031 alias c_g_atomic_int_add g_atomic_int_add; 3032 alias c_g_atomic_int_exchange_and_add g_atomic_int_exchange_and_add; 3033 alias c_g_atomic_int_compare_and_exchange g_atomic_int_compare_and_exchange; 3034 alias c_g_atomic_pointer_get g_atomic_pointer_get; 3035 alias c_g_atomic_pointer_set g_atomic_pointer_set; 3036 alias c_g_atomic_pointer_compare_and_exchange g_atomic_pointer_compare_and_exchange; 3037 alias c_g_atomic_int_inc g_atomic_int_inc; 3038 alias c_g_atomic_int_dec_and_test g_atomic_int_dec_and_test; 3039 3040 // glib.MainLoop 3041 3042 alias c_g_main_loop_new g_main_loop_new; 3043 alias c_g_main_loop_ref g_main_loop_ref; 3044 alias c_g_main_loop_unref g_main_loop_unref; 3045 alias c_g_main_loop_run g_main_loop_run; 3046 alias c_g_main_loop_quit g_main_loop_quit; 3047 alias c_g_main_loop_is_running g_main_loop_is_running; 3048 alias c_g_main_loop_get_context g_main_loop_get_context; 3049 alias c_g_main_depth g_main_depth; 3050 alias c_g_main_current_source g_main_current_source; 3051 alias c_g_poll g_poll; 3052 3053 // glib.MainContext 3054 3055 alias c_g_main_context_new g_main_context_new; 3056 alias c_g_main_context_ref g_main_context_ref; 3057 alias c_g_main_context_unref g_main_context_unref; 3058 alias c_g_main_context_default g_main_context_default; 3059 alias c_g_main_context_iteration g_main_context_iteration; 3060 alias c_g_main_context_pending g_main_context_pending; 3061 alias c_g_main_context_find_source_by_id g_main_context_find_source_by_id; 3062 alias c_g_main_context_find_source_by_user_data g_main_context_find_source_by_user_data; 3063 alias c_g_main_context_find_source_by_funcs_user_data g_main_context_find_source_by_funcs_user_data; 3064 alias c_g_main_context_wakeup g_main_context_wakeup; 3065 alias c_g_main_context_acquire g_main_context_acquire; 3066 alias c_g_main_context_release g_main_context_release; 3067 alias c_g_main_context_is_owner g_main_context_is_owner; 3068 alias c_g_main_context_wait g_main_context_wait; 3069 alias c_g_main_context_prepare g_main_context_prepare; 3070 alias c_g_main_context_query g_main_context_query; 3071 alias c_g_main_context_check g_main_context_check; 3072 alias c_g_main_context_dispatch g_main_context_dispatch; 3073 alias c_g_main_context_set_poll_func g_main_context_set_poll_func; 3074 alias c_g_main_context_get_poll_func g_main_context_get_poll_func; 3075 alias c_g_main_context_add_poll g_main_context_add_poll; 3076 alias c_g_main_context_remove_poll g_main_context_remove_poll; 3077 alias c_g_main_context_invoke g_main_context_invoke; 3078 alias c_g_main_context_invoke_full g_main_context_invoke_full; 3079 alias c_g_main_context_get_thread_default g_main_context_get_thread_default; 3080 alias c_g_main_context_push_thread_default g_main_context_push_thread_default; 3081 alias c_g_main_context_pop_thread_default g_main_context_pop_thread_default; 3082 3083 // glib.Timeout 3084 3085 alias c_g_timeout_source_new g_timeout_source_new; 3086 alias c_g_timeout_source_new_seconds g_timeout_source_new_seconds; 3087 alias c_g_timeout_add g_timeout_add; 3088 alias c_g_timeout_add_full g_timeout_add_full; 3089 alias c_g_timeout_add_seconds g_timeout_add_seconds; 3090 alias c_g_timeout_add_seconds_full g_timeout_add_seconds_full; 3091 3092 // glib.Idle 3093 3094 alias c_g_idle_source_new g_idle_source_new; 3095 alias c_g_idle_add g_idle_add; 3096 alias c_g_idle_add_full g_idle_add_full; 3097 alias c_g_idle_remove_by_data g_idle_remove_by_data; 3098 3099 // glib.Child 3100 3101 alias c_g_child_watch_source_new g_child_watch_source_new; 3102 alias c_g_child_watch_add g_child_watch_add; 3103 alias c_g_child_watch_add_full g_child_watch_add_full; 3104 3105 // glib.Source 3106 3107 alias c_g_source_new g_source_new; 3108 alias c_g_source_ref g_source_ref; 3109 alias c_g_source_unref g_source_unref; 3110 alias c_g_source_set_funcs g_source_set_funcs; 3111 alias c_g_source_attach g_source_attach; 3112 alias c_g_source_destroy g_source_destroy; 3113 alias c_g_source_is_destroyed g_source_is_destroyed; 3114 alias c_g_source_set_priority g_source_set_priority; 3115 alias c_g_source_get_priority g_source_get_priority; 3116 alias c_g_source_set_can_recurse g_source_set_can_recurse; 3117 alias c_g_source_get_can_recurse g_source_get_can_recurse; 3118 alias c_g_source_get_id g_source_get_id; 3119 alias c_g_source_get_name g_source_get_name; 3120 alias c_g_source_set_name g_source_set_name; 3121 alias c_g_source_set_name_by_id g_source_set_name_by_id; 3122 alias c_g_source_get_context g_source_get_context; 3123 alias c_g_source_set_callback g_source_set_callback; 3124 alias c_g_source_set_callback_indirect g_source_set_callback_indirect; 3125 alias c_g_source_add_poll g_source_add_poll; 3126 alias c_g_source_remove_poll g_source_remove_poll; 3127 alias c_g_source_add_child_source g_source_add_child_source; 3128 alias c_g_source_remove_child_source g_source_remove_child_source; 3129 alias c_g_source_get_time g_source_get_time; 3130 alias c_g_source_get_current_time g_source_get_current_time; 3131 alias c_g_source_remove g_source_remove; 3132 alias c_g_source_remove_by_funcs_user_data g_source_remove_by_funcs_user_data; 3133 alias c_g_source_remove_by_user_data g_source_remove_by_user_data; 3134 3135 // glib.ThreadPool 3136 3137 alias c_g_thread_pool_new g_thread_pool_new; 3138 alias c_g_thread_pool_push g_thread_pool_push; 3139 alias c_g_thread_pool_set_max_threads g_thread_pool_set_max_threads; 3140 alias c_g_thread_pool_get_max_threads g_thread_pool_get_max_threads; 3141 alias c_g_thread_pool_get_num_threads g_thread_pool_get_num_threads; 3142 alias c_g_thread_pool_unprocessed g_thread_pool_unprocessed; 3143 alias c_g_thread_pool_free g_thread_pool_free; 3144 alias c_g_thread_pool_set_max_unused_threads g_thread_pool_set_max_unused_threads; 3145 alias c_g_thread_pool_get_max_unused_threads g_thread_pool_get_max_unused_threads; 3146 alias c_g_thread_pool_get_num_unused_threads g_thread_pool_get_num_unused_threads; 3147 alias c_g_thread_pool_stop_unused_threads g_thread_pool_stop_unused_threads; 3148 alias c_g_thread_pool_set_sort_function g_thread_pool_set_sort_function; 3149 alias c_g_thread_pool_set_max_idle_time g_thread_pool_set_max_idle_time; 3150 alias c_g_thread_pool_get_max_idle_time g_thread_pool_get_max_idle_time; 3151 3152 // glib.AsyncQueue 3153 3154 alias c_g_async_queue_new g_async_queue_new; 3155 alias c_g_async_queue_new_full g_async_queue_new_full; 3156 alias c_g_async_queue_ref g_async_queue_ref; 3157 alias c_g_async_queue_unref g_async_queue_unref; 3158 alias c_g_async_queue_push g_async_queue_push; 3159 alias c_g_async_queue_push_sorted g_async_queue_push_sorted; 3160 alias c_g_async_queue_pop g_async_queue_pop; 3161 alias c_g_async_queue_try_pop g_async_queue_try_pop; 3162 alias c_g_async_queue_timed_pop g_async_queue_timed_pop; 3163 alias c_g_async_queue_length g_async_queue_length; 3164 alias c_g_async_queue_sort g_async_queue_sort; 3165 alias c_g_async_queue_lock g_async_queue_lock; 3166 alias c_g_async_queue_unlock g_async_queue_unlock; 3167 alias c_g_async_queue_ref_unlocked g_async_queue_ref_unlocked; 3168 alias c_g_async_queue_unref_and_unlock g_async_queue_unref_and_unlock; 3169 alias c_g_async_queue_push_unlocked g_async_queue_push_unlocked; 3170 alias c_g_async_queue_push_sorted_unlocked g_async_queue_push_sorted_unlocked; 3171 alias c_g_async_queue_pop_unlocked g_async_queue_pop_unlocked; 3172 alias c_g_async_queue_try_pop_unlocked g_async_queue_try_pop_unlocked; 3173 alias c_g_async_queue_timed_pop_unlocked g_async_queue_timed_pop_unlocked; 3174 alias c_g_async_queue_length_unlocked g_async_queue_length_unlocked; 3175 alias c_g_async_queue_sort_unlocked g_async_queue_sort_unlocked; 3176 3177 // glib.Module 3178 3179 alias c_g_module_open g_module_open; 3180 alias c_g_module_supported g_module_supported; 3181 alias c_g_module_build_path g_module_build_path; 3182 alias c_g_module_symbol g_module_symbol; 3183 alias c_g_module_make_resident g_module_make_resident; 3184 alias c_g_module_close g_module_close; 3185 alias c_g_module_error g_module_error; 3186 3187 // glib.Memory 3188 3189 alias c_g_malloc g_malloc; 3190 alias c_g_malloc0 g_malloc0; 3191 alias c_g_realloc g_realloc; 3192 alias c_g_try_malloc g_try_malloc; 3193 alias c_g_try_malloc0 g_try_malloc0; 3194 alias c_g_try_realloc g_try_realloc; 3195 alias c_g_malloc_n g_malloc_n; 3196 alias c_g_malloc0_n g_malloc0_n; 3197 alias c_g_realloc_n g_realloc_n; 3198 alias c_g_try_malloc_n g_try_malloc_n; 3199 alias c_g_try_malloc0_n g_try_malloc0_n; 3200 alias c_g_try_realloc_n g_try_realloc_n; 3201 alias c_g_free g_free; 3202 alias c_g_memdup g_memdup; 3203 alias c_g_mem_set_vtable g_mem_set_vtable; 3204 alias c_g_mem_is_system_malloc g_mem_is_system_malloc; 3205 alias c_g_mem_profile g_mem_profile; 3206 3207 // glib.IOChannel 3208 3209 alias c_g_io_channel_unix_new g_io_channel_unix_new; 3210 alias c_g_io_channel_unix_get_fd g_io_channel_unix_get_fd; 3211 alias c_g_io_channel_win32_new_fd g_io_channel_win32_new_fd; 3212 alias c_g_io_channel_win32_new_socket g_io_channel_win32_new_socket; 3213 alias c_g_io_channel_win32_new_messages g_io_channel_win32_new_messages; 3214 alias c_g_io_channel_init g_io_channel_init; 3215 alias c_g_io_channel_read_chars g_io_channel_read_chars; 3216 alias c_g_io_channel_read_unichar g_io_channel_read_unichar; 3217 alias c_g_io_channel_read_line g_io_channel_read_line; 3218 alias c_g_io_channel_read_line_string g_io_channel_read_line_string; 3219 alias c_g_io_channel_read_to_end g_io_channel_read_to_end; 3220 alias c_g_io_channel_write_chars g_io_channel_write_chars; 3221 alias c_g_io_channel_write_unichar g_io_channel_write_unichar; 3222 alias c_g_io_channel_flush g_io_channel_flush; 3223 alias c_g_io_channel_seek_position g_io_channel_seek_position; 3224 alias c_g_io_channel_shutdown g_io_channel_shutdown; 3225 alias c_g_io_channel_error_from_errno g_io_channel_error_from_errno; 3226 alias c_g_io_channel_ref g_io_channel_ref; 3227 alias c_g_io_channel_unref g_io_channel_unref; 3228 alias c_g_io_create_watch g_io_create_watch; 3229 alias c_g_io_add_watch g_io_add_watch; 3230 alias c_g_io_add_watch_full g_io_add_watch_full; 3231 alias c_g_io_channel_get_buffer_size g_io_channel_get_buffer_size; 3232 alias c_g_io_channel_set_buffer_size g_io_channel_set_buffer_size; 3233 alias c_g_io_channel_get_buffer_condition g_io_channel_get_buffer_condition; 3234 alias c_g_io_channel_get_flags g_io_channel_get_flags; 3235 alias c_g_io_channel_set_flags g_io_channel_set_flags; 3236 alias c_g_io_channel_get_line_term g_io_channel_get_line_term; 3237 alias c_g_io_channel_set_line_term g_io_channel_set_line_term; 3238 alias c_g_io_channel_get_buffered g_io_channel_get_buffered; 3239 alias c_g_io_channel_set_buffered g_io_channel_set_buffered; 3240 alias c_g_io_channel_get_encoding g_io_channel_get_encoding; 3241 alias c_g_io_channel_set_encoding g_io_channel_set_encoding; 3242 alias c_g_io_channel_get_close_on_unref g_io_channel_get_close_on_unref; 3243 alias c_g_io_channel_set_close_on_unref g_io_channel_set_close_on_unref; 3244 alias c_g_io_channel_read g_io_channel_read; 3245 alias c_g_io_channel_write g_io_channel_write; 3246 alias c_g_io_channel_seek g_io_channel_seek; 3247 alias c_g_io_channel_close g_io_channel_close; 3248 3249 // glib.ErrorG 3250 3251 alias c_g_error_new g_error_new; 3252 alias c_g_error_new_literal g_error_new_literal; 3253 alias c_g_error_new_valist g_error_new_valist; 3254 alias c_g_error_free g_error_free; 3255 alias c_g_error_copy g_error_copy; 3256 alias c_g_error_matches g_error_matches; 3257 alias c_g_set_error g_set_error; 3258 alias c_g_set_error_literal g_set_error_literal; 3259 alias c_g_propagate_error g_propagate_error; 3260 alias c_g_clear_error g_clear_error; 3261 alias c_g_prefix_error g_prefix_error; 3262 alias c_g_propagate_prefixed_error g_propagate_prefixed_error; 3263 3264 // glib. 3265 3266 3267 // glib. 3268 3269 3270 // glib.Messages 3271 3272 alias c_g_print g_print; 3273 alias c_g_set_print_handler g_set_print_handler; 3274 alias c_g_printerr g_printerr; 3275 alias c_g_set_printerr_handler g_set_printerr_handler; 3276 alias c_g_on_error_query g_on_error_query; 3277 alias c_g_on_error_stack_trace g_on_error_stack_trace; 3278 3279 // glib.MessageLog 3280 3281 alias c_g_log g_log; 3282 alias c_g_logv g_logv; 3283 alias c_g_log_set_handler g_log_set_handler; 3284 alias c_g_log_remove_handler g_log_remove_handler; 3285 alias c_g_log_set_always_fatal g_log_set_always_fatal; 3286 alias c_g_log_set_fatal_mask g_log_set_fatal_mask; 3287 alias c_g_log_default_handler g_log_default_handler; 3288 alias c_g_log_set_default_handler g_log_set_default_handler; 3289 3290 // glib.Str 3291 3292 alias c_g_strdup g_strdup; 3293 alias c_g_strndup g_strndup; 3294 alias c_g_strdupv g_strdupv; 3295 alias c_g_strnfill g_strnfill; 3296 alias c_g_stpcpy g_stpcpy; 3297 alias c_g_strstr_len g_strstr_len; 3298 alias c_g_strrstr g_strrstr; 3299 alias c_g_strrstr_len g_strrstr_len; 3300 alias c_g_str_has_prefix g_str_has_prefix; 3301 alias c_g_str_has_suffix g_str_has_suffix; 3302 alias c_g_strcmp0 g_strcmp0; 3303 alias c_g_strlcpy g_strlcpy; 3304 alias c_g_strlcat g_strlcat; 3305 alias c_g_strdup_printf g_strdup_printf; 3306 alias c_g_strdup_vprintf g_strdup_vprintf; 3307 alias c_g_printf g_printf; 3308 alias c_g_vprintf g_vprintf; 3309 alias c_g_fprintf g_fprintf; 3310 alias c_g_vfprintf g_vfprintf; 3311 alias c_g_sprintf g_sprintf; 3312 alias c_g_vsprintf g_vsprintf; 3313 alias c_g_snprintf g_snprintf; 3314 alias c_g_vsnprintf g_vsnprintf; 3315 alias c_g_vasprintf g_vasprintf; 3316 alias c_g_printf_string_upper_bound g_printf_string_upper_bound; 3317 alias c_g_ascii_isalnum g_ascii_isalnum; 3318 alias c_g_ascii_isalpha g_ascii_isalpha; 3319 alias c_g_ascii_iscntrl g_ascii_iscntrl; 3320 alias c_g_ascii_isdigit g_ascii_isdigit; 3321 alias c_g_ascii_isgraph g_ascii_isgraph; 3322 alias c_g_ascii_islower g_ascii_islower; 3323 alias c_g_ascii_isprint g_ascii_isprint; 3324 alias c_g_ascii_ispunct g_ascii_ispunct; 3325 alias c_g_ascii_isspace g_ascii_isspace; 3326 alias c_g_ascii_isupper g_ascii_isupper; 3327 alias c_g_ascii_isxdigit g_ascii_isxdigit; 3328 alias c_g_ascii_digit_value g_ascii_digit_value; 3329 alias c_g_ascii_xdigit_value g_ascii_xdigit_value; 3330 alias c_g_ascii_strcasecmp g_ascii_strcasecmp; 3331 alias c_g_ascii_strncasecmp g_ascii_strncasecmp; 3332 alias c_g_ascii_strup g_ascii_strup; 3333 alias c_g_ascii_strdown g_ascii_strdown; 3334 alias c_g_ascii_tolower g_ascii_tolower; 3335 alias c_g_ascii_toupper g_ascii_toupper; 3336 alias c_g_string_ascii_up g_string_ascii_up; 3337 alias c_g_string_ascii_down g_string_ascii_down; 3338 alias c_g_strup g_strup; 3339 alias c_g_strdown g_strdown; 3340 alias c_g_strcasecmp g_strcasecmp; 3341 alias c_g_strncasecmp g_strncasecmp; 3342 alias c_g_strreverse g_strreverse; 3343 alias c_g_ascii_strtoll g_ascii_strtoll; 3344 alias c_g_ascii_strtoull g_ascii_strtoull; 3345 alias c_g_ascii_strtod g_ascii_strtod; 3346 alias c_g_ascii_dtostr g_ascii_dtostr; 3347 alias c_g_ascii_formatd g_ascii_formatd; 3348 alias c_g_strtod g_strtod; 3349 alias c_g_strchug g_strchug; 3350 alias c_g_strchomp g_strchomp; 3351 alias c_g_strdelimit g_strdelimit; 3352 alias c_g_strescape g_strescape; 3353 alias c_g_strcompress g_strcompress; 3354 alias c_g_strcanon g_strcanon; 3355 alias c_g_strsplit g_strsplit; 3356 alias c_g_strsplit_set g_strsplit_set; 3357 alias c_g_strfreev g_strfreev; 3358 alias c_g_strconcat g_strconcat; 3359 alias c_g_strjoin g_strjoin; 3360 alias c_g_strjoinv g_strjoinv; 3361 alias c_g_strv_length g_strv_length; 3362 alias c_g_strerror g_strerror; 3363 alias c_g_strsignal g_strsignal; 3364 3365 // glib.CharacterSet 3366 3367 alias c_g_convert g_convert; 3368 alias c_g_convert_with_fallback g_convert_with_fallback; 3369 alias c_g_locale_to_utf8 g_locale_to_utf8; 3370 alias c_g_get_filename_charsets g_get_filename_charsets; 3371 alias c_g_filename_display_name g_filename_display_name; 3372 alias c_g_filename_display_basename g_filename_display_basename; 3373 alias c_g_locale_from_utf8 g_locale_from_utf8; 3374 alias c_g_get_charset g_get_charset; 3375 3376 // glib.Unicode 3377 3378 alias c_g_unichar_validate g_unichar_validate; 3379 alias c_g_unichar_isalnum g_unichar_isalnum; 3380 alias c_g_unichar_isalpha g_unichar_isalpha; 3381 alias c_g_unichar_iscntrl g_unichar_iscntrl; 3382 alias c_g_unichar_isdefined g_unichar_isdefined; 3383 alias c_g_unichar_isdigit g_unichar_isdigit; 3384 alias c_g_unichar_isgraph g_unichar_isgraph; 3385 alias c_g_unichar_islower g_unichar_islower; 3386 alias c_g_unichar_ismark g_unichar_ismark; 3387 alias c_g_unichar_isprint g_unichar_isprint; 3388 alias c_g_unichar_ispunct g_unichar_ispunct; 3389 alias c_g_unichar_isspace g_unichar_isspace; 3390 alias c_g_unichar_istitle g_unichar_istitle; 3391 alias c_g_unichar_isupper g_unichar_isupper; 3392 alias c_g_unichar_isxdigit g_unichar_isxdigit; 3393 alias c_g_unichar_iswide g_unichar_iswide; 3394 alias c_g_unichar_iswide_cjk g_unichar_iswide_cjk; 3395 alias c_g_unichar_iszerowidth g_unichar_iszerowidth; 3396 alias c_g_unichar_toupper g_unichar_toupper; 3397 alias c_g_unichar_tolower g_unichar_tolower; 3398 alias c_g_unichar_totitle g_unichar_totitle; 3399 alias c_g_unichar_digit_value g_unichar_digit_value; 3400 alias c_g_unichar_xdigit_value g_unichar_xdigit_value; 3401 alias c_g_unichar_type g_unichar_type; 3402 alias c_g_unichar_break_type g_unichar_break_type; 3403 alias c_g_unichar_combining_class g_unichar_combining_class; 3404 alias c_g_unicode_canonical_ordering g_unicode_canonical_ordering; 3405 alias c_g_unicode_canonical_decomposition g_unicode_canonical_decomposition; 3406 alias c_g_unichar_get_mirror_char g_unichar_get_mirror_char; 3407 alias c_g_unichar_get_script g_unichar_get_script; 3408 alias c_g_utf8_get_char g_utf8_get_char; 3409 alias c_g_utf8_get_char_validated g_utf8_get_char_validated; 3410 alias c_g_utf8_offset_to_pointer g_utf8_offset_to_pointer; 3411 alias c_g_utf8_pointer_to_offset g_utf8_pointer_to_offset; 3412 alias c_g_utf8_prev_char g_utf8_prev_char; 3413 alias c_g_utf8_find_next_char g_utf8_find_next_char; 3414 alias c_g_utf8_find_prev_char g_utf8_find_prev_char; 3415 alias c_g_utf8_strlen g_utf8_strlen; 3416 alias c_g_utf8_strncpy g_utf8_strncpy; 3417 alias c_g_utf8_strchr g_utf8_strchr; 3418 alias c_g_utf8_strrchr g_utf8_strrchr; 3419 alias c_g_utf8_strreverse g_utf8_strreverse; 3420 alias c_g_utf8_validate g_utf8_validate; 3421 alias c_g_utf8_strup g_utf8_strup; 3422 alias c_g_utf8_strdown g_utf8_strdown; 3423 alias c_g_utf8_casefold g_utf8_casefold; 3424 alias c_g_utf8_normalize g_utf8_normalize; 3425 alias c_g_utf8_collate g_utf8_collate; 3426 alias c_g_utf8_collate_key g_utf8_collate_key; 3427 alias c_g_utf8_collate_key_for_filename g_utf8_collate_key_for_filename; 3428 alias c_g_utf8_to_utf16 g_utf8_to_utf16; 3429 alias c_g_utf8_to_ucs4 g_utf8_to_ucs4; 3430 alias c_g_utf8_to_ucs4_fast g_utf8_to_ucs4_fast; 3431 alias c_g_utf16_to_ucs4 g_utf16_to_ucs4; 3432 alias c_g_utf16_to_utf8 g_utf16_to_utf8; 3433 alias c_g_ucs4_to_utf16 g_ucs4_to_utf16; 3434 alias c_g_ucs4_to_utf8 g_ucs4_to_utf8; 3435 alias c_g_unichar_to_utf8 g_unichar_to_utf8; 3436 3437 // glib.Base64 3438 3439 alias c_g_base64_encode_step g_base64_encode_step; 3440 alias c_g_base64_encode_close g_base64_encode_close; 3441 alias c_g_base64_encode g_base64_encode; 3442 alias c_g_base64_decode_step g_base64_decode_step; 3443 alias c_g_base64_decode g_base64_decode; 3444 alias c_g_base64_decode_inplace g_base64_decode_inplace; 3445 3446 // glib.Checksum 3447 3448 alias c_g_checksum_type_get_length g_checksum_type_get_length; 3449 alias c_g_checksum_new g_checksum_new; 3450 alias c_g_checksum_copy g_checksum_copy; 3451 alias c_g_checksum_free g_checksum_free; 3452 alias c_g_checksum_reset g_checksum_reset; 3453 alias c_g_checksum_update g_checksum_update; 3454 alias c_g_checksum_get_string g_checksum_get_string; 3455 alias c_g_checksum_get_digest g_checksum_get_digest; 3456 alias c_g_compute_checksum_for_data g_compute_checksum_for_data; 3457 alias c_g_compute_checksum_for_string g_compute_checksum_for_string; 3458 3459 // glib.Internationalization 3460 3461 alias c_g_dgettext g_dgettext; 3462 alias c_g_dcgettext g_dcgettext; 3463 alias c_g_dngettext g_dngettext; 3464 alias c_g_dpgettext g_dpgettext; 3465 alias c_g_dpgettext2 g_dpgettext2; 3466 alias c_g_strip_context g_strip_context; 3467 alias c_g_get_language_names g_get_language_names; 3468 alias c_g_get_locale_variants g_get_locale_variants; 3469 3470 // glib.TimeVal 3471 3472 alias c_g_get_current_time g_get_current_time; 3473 alias c_g_usleep g_usleep; 3474 alias c_g_time_val_add g_time_val_add; 3475 alias c_g_time_val_from_iso8601 g_time_val_from_iso8601; 3476 alias c_g_time_val_to_iso8601 g_time_val_to_iso8601; 3477 alias c_g_get_monotonic_time g_get_monotonic_time; 3478 alias c_g_get_real_time g_get_real_time; 3479 3480 // glib.Date 3481 3482 alias c_g_date_new g_date_new; 3483 alias c_g_date_new_dmy g_date_new_dmy; 3484 alias c_g_date_new_julian g_date_new_julian; 3485 alias c_g_date_clear g_date_clear; 3486 alias c_g_date_free g_date_free; 3487 alias c_g_date_set_day g_date_set_day; 3488 alias c_g_date_set_month g_date_set_month; 3489 alias c_g_date_set_year g_date_set_year; 3490 alias c_g_date_set_dmy g_date_set_dmy; 3491 alias c_g_date_set_julian g_date_set_julian; 3492 alias c_g_date_set_time g_date_set_time; 3493 alias c_g_date_set_time_t g_date_set_time_t; 3494 alias c_g_date_set_time_val g_date_set_time_val; 3495 alias c_g_date_set_parse g_date_set_parse; 3496 alias c_g_date_add_days g_date_add_days; 3497 alias c_g_date_subtract_days g_date_subtract_days; 3498 alias c_g_date_add_months g_date_add_months; 3499 alias c_g_date_subtract_months g_date_subtract_months; 3500 alias c_g_date_add_years g_date_add_years; 3501 alias c_g_date_subtract_years g_date_subtract_years; 3502 alias c_g_date_days_between g_date_days_between; 3503 alias c_g_date_compare g_date_compare; 3504 alias c_g_date_clamp g_date_clamp; 3505 alias c_g_date_order g_date_order; 3506 alias c_g_date_get_day g_date_get_day; 3507 alias c_g_date_get_month g_date_get_month; 3508 alias c_g_date_get_year g_date_get_year; 3509 alias c_g_date_get_julian g_date_get_julian; 3510 alias c_g_date_get_weekday g_date_get_weekday; 3511 alias c_g_date_get_day_of_year g_date_get_day_of_year; 3512 alias c_g_date_get_days_in_month g_date_get_days_in_month; 3513 alias c_g_date_is_first_of_month g_date_is_first_of_month; 3514 alias c_g_date_is_last_of_month g_date_is_last_of_month; 3515 alias c_g_date_is_leap_year g_date_is_leap_year; 3516 alias c_g_date_get_monday_week_of_year g_date_get_monday_week_of_year; 3517 alias c_g_date_get_monday_weeks_in_year g_date_get_monday_weeks_in_year; 3518 alias c_g_date_get_sunday_week_of_year g_date_get_sunday_week_of_year; 3519 alias c_g_date_get_sunday_weeks_in_year g_date_get_sunday_weeks_in_year; 3520 alias c_g_date_get_iso8601_week_of_year g_date_get_iso8601_week_of_year; 3521 alias c_g_date_strftime g_date_strftime; 3522 alias c_g_date_to_struct_tm g_date_to_struct_tm; 3523 alias c_g_date_valid g_date_valid; 3524 alias c_g_date_valid_day g_date_valid_day; 3525 alias c_g_date_valid_month g_date_valid_month; 3526 alias c_g_date_valid_year g_date_valid_year; 3527 alias c_g_date_valid_dmy g_date_valid_dmy; 3528 alias c_g_date_valid_julian g_date_valid_julian; 3529 alias c_g_date_valid_weekday g_date_valid_weekday; 3530 3531 // glib.TimeZone 3532 3533 alias c_g_time_zone_unref g_time_zone_unref; 3534 alias c_g_time_zone_ref g_time_zone_ref; 3535 alias c_g_time_zone_new g_time_zone_new; 3536 alias c_g_time_zone_new_local g_time_zone_new_local; 3537 alias c_g_time_zone_new_utc g_time_zone_new_utc; 3538 alias c_g_time_zone_find_interval g_time_zone_find_interval; 3539 alias c_g_time_zone_adjust_time g_time_zone_adjust_time; 3540 alias c_g_time_zone_get_abbreviation g_time_zone_get_abbreviation; 3541 alias c_g_time_zone_get_offset g_time_zone_get_offset; 3542 alias c_g_time_zone_is_dst g_time_zone_is_dst; 3543 3544 // glib.DateTime 3545 3546 alias c_g_date_time_unref g_date_time_unref; 3547 alias c_g_date_time_ref g_date_time_ref; 3548 alias c_g_date_time_new_now g_date_time_new_now; 3549 alias c_g_date_time_new_now_local g_date_time_new_now_local; 3550 alias c_g_date_time_new_now_utc g_date_time_new_now_utc; 3551 alias c_g_date_time_new_from_unix_local g_date_time_new_from_unix_local; 3552 alias c_g_date_time_new_from_unix_utc g_date_time_new_from_unix_utc; 3553 alias c_g_date_time_new_from_timeval_local g_date_time_new_from_timeval_local; 3554 alias c_g_date_time_new_from_timeval_utc g_date_time_new_from_timeval_utc; 3555 alias c_g_date_time_new g_date_time_new; 3556 alias c_g_date_time_new_local g_date_time_new_local; 3557 alias c_g_date_time_new_utc g_date_time_new_utc; 3558 alias c_g_date_time_add g_date_time_add; 3559 alias c_g_date_time_add_years g_date_time_add_years; 3560 alias c_g_date_time_add_months g_date_time_add_months; 3561 alias c_g_date_time_add_weeks g_date_time_add_weeks; 3562 alias c_g_date_time_add_days g_date_time_add_days; 3563 alias c_g_date_time_add_hours g_date_time_add_hours; 3564 alias c_g_date_time_add_minutes g_date_time_add_minutes; 3565 alias c_g_date_time_add_seconds g_date_time_add_seconds; 3566 alias c_g_date_time_add_full g_date_time_add_full; 3567 alias c_g_date_time_compare g_date_time_compare; 3568 alias c_g_date_time_difference g_date_time_difference; 3569 alias c_g_date_time_hash g_date_time_hash; 3570 alias c_g_date_time_equal g_date_time_equal; 3571 alias c_g_date_time_get_ymd g_date_time_get_ymd; 3572 alias c_g_date_time_get_year g_date_time_get_year; 3573 alias c_g_date_time_get_month g_date_time_get_month; 3574 alias c_g_date_time_get_day_of_month g_date_time_get_day_of_month; 3575 alias c_g_date_time_get_week_numbering_year g_date_time_get_week_numbering_year; 3576 alias c_g_date_time_get_week_of_year g_date_time_get_week_of_year; 3577 alias c_g_date_time_get_day_of_week g_date_time_get_day_of_week; 3578 alias c_g_date_time_get_day_of_year g_date_time_get_day_of_year; 3579 alias c_g_date_time_get_hour g_date_time_get_hour; 3580 alias c_g_date_time_get_minute g_date_time_get_minute; 3581 alias c_g_date_time_get_second g_date_time_get_second; 3582 alias c_g_date_time_get_microsecond g_date_time_get_microsecond; 3583 alias c_g_date_time_get_seconds g_date_time_get_seconds; 3584 alias c_g_date_time_to_unix g_date_time_to_unix; 3585 alias c_g_date_time_to_timeval g_date_time_to_timeval; 3586 alias c_g_date_time_get_utc_offset g_date_time_get_utc_offset; 3587 alias c_g_date_time_get_timezone_abbreviation g_date_time_get_timezone_abbreviation; 3588 alias c_g_date_time_is_daylight_savings g_date_time_is_daylight_savings; 3589 alias c_g_date_time_to_timezone g_date_time_to_timezone; 3590 alias c_g_date_time_to_local g_date_time_to_local; 3591 alias c_g_date_time_to_utc g_date_time_to_utc; 3592 alias c_g_date_time_format g_date_time_format; 3593 3594 // glib.RandG 3595 3596 alias c_g_rand_new_with_seed g_rand_new_with_seed; 3597 alias c_g_rand_new_with_seed_array g_rand_new_with_seed_array; 3598 alias c_g_rand_new g_rand_new; 3599 alias c_g_rand_copy g_rand_copy; 3600 alias c_g_rand_free g_rand_free; 3601 alias c_g_rand_set_seed g_rand_set_seed; 3602 alias c_g_rand_set_seed_array g_rand_set_seed_array; 3603 alias c_g_rand_int g_rand_int; 3604 alias c_g_rand_int_range g_rand_int_range; 3605 alias c_g_rand_double g_rand_double; 3606 alias c_g_rand_double_range g_rand_double_range; 3607 alias c_g_random_set_seed g_random_set_seed; 3608 alias c_g_random_int g_random_int; 3609 alias c_g_random_int_range g_random_int_range; 3610 alias c_g_random_double g_random_double; 3611 alias c_g_random_double_range g_random_double_range; 3612 3613 // glib.Util 3614 3615 alias c_g_get_application_name g_get_application_name; 3616 alias c_g_set_application_name g_set_application_name; 3617 alias c_g_get_prgname g_get_prgname; 3618 alias c_g_set_prgname g_set_prgname; 3619 alias c_g_get_environ g_get_environ; 3620 alias c_g_listenv g_listenv; 3621 alias c_g_get_user_cache_dir g_get_user_cache_dir; 3622 alias c_g_get_user_data_dir g_get_user_data_dir; 3623 alias c_g_get_user_config_dir g_get_user_config_dir; 3624 alias c_g_get_user_runtime_dir g_get_user_runtime_dir; 3625 alias c_g_get_user_special_dir g_get_user_special_dir; 3626 alias c_g_get_system_data_dirs g_get_system_data_dirs; 3627 alias c_g_get_system_config_dirs g_get_system_config_dirs; 3628 alias c_g_reload_user_special_dirs_cache g_reload_user_special_dirs_cache; 3629 alias c_g_get_host_name g_get_host_name; 3630 alias c_g_basename g_basename; 3631 alias c_g_path_is_absolute g_path_is_absolute; 3632 alias c_g_path_skip_root g_path_skip_root; 3633 alias c_g_path_get_basename g_path_get_basename; 3634 alias c_g_path_get_dirname g_path_get_dirname; 3635 alias c_g_build_filename g_build_filename; 3636 alias c_g_build_filenamev g_build_filenamev; 3637 alias c_g_build_path g_build_path; 3638 alias c_g_build_pathv g_build_pathv; 3639 alias c_g_format_size_for_display g_format_size_for_display; 3640 alias c_g_bit_nth_lsf g_bit_nth_lsf; 3641 alias c_g_bit_nth_msf g_bit_nth_msf; 3642 alias c_g_bit_storage g_bit_storage; 3643 alias c_g_spaced_primes_closest g_spaced_primes_closest; 3644 alias c_g_atexit g_atexit; 3645 alias c_g_parse_debug_string g_parse_debug_string; 3646 alias c_g_qsort_with_data g_qsort_with_data; 3647 alias c_g_nullify_pointer g_nullify_pointer; 3648 3649 // glib.ScannerG 3650 3651 alias c_g_scanner_new g_scanner_new; 3652 alias c_g_scanner_destroy g_scanner_destroy; 3653 alias c_g_scanner_input_file g_scanner_input_file; 3654 alias c_g_scanner_sync_file_offset g_scanner_sync_file_offset; 3655 alias c_g_scanner_input_text g_scanner_input_text; 3656 alias c_g_scanner_peek_next_token g_scanner_peek_next_token; 3657 alias c_g_scanner_get_next_token g_scanner_get_next_token; 3658 alias c_g_scanner_eof g_scanner_eof; 3659 alias c_g_scanner_cur_line g_scanner_cur_line; 3660 alias c_g_scanner_cur_position g_scanner_cur_position; 3661 alias c_g_scanner_cur_token g_scanner_cur_token; 3662 alias c_g_scanner_cur_value g_scanner_cur_value; 3663 alias c_g_scanner_set_scope g_scanner_set_scope; 3664 alias c_g_scanner_scope_add_symbol g_scanner_scope_add_symbol; 3665 alias c_g_scanner_scope_foreach_symbol g_scanner_scope_foreach_symbol; 3666 alias c_g_scanner_scope_lookup_symbol g_scanner_scope_lookup_symbol; 3667 alias c_g_scanner_scope_remove_symbol g_scanner_scope_remove_symbol; 3668 alias c_g_scanner_lookup_symbol g_scanner_lookup_symbol; 3669 alias c_g_scanner_warn g_scanner_warn; 3670 alias c_g_scanner_error g_scanner_error; 3671 alias c_g_scanner_unexp_token g_scanner_unexp_token; 3672 3673 // glib.StringCompletion 3674 3675 alias c_g_completion_new g_completion_new; 3676 alias c_g_completion_add_items g_completion_add_items; 3677 alias c_g_completion_remove_items g_completion_remove_items; 3678 alias c_g_completion_clear_items g_completion_clear_items; 3679 alias c_g_completion_complete g_completion_complete; 3680 alias c_g_completion_complete_utf8 g_completion_complete_utf8; 3681 alias c_g_completion_set_compare g_completion_set_compare; 3682 alias c_g_completion_free g_completion_free; 3683 3684 // glib.Timer 3685 3686 alias c_g_timer_new g_timer_new; 3687 alias c_g_timer_start g_timer_start; 3688 alias c_g_timer_stop g_timer_stop; 3689 alias c_g_timer_continue g_timer_continue; 3690 alias c_g_timer_elapsed g_timer_elapsed; 3691 alias c_g_timer_reset g_timer_reset; 3692 alias c_g_timer_destroy g_timer_destroy; 3693 3694 // glib.Spawn 3695 3696 alias c_g_spawn_async_with_pipes g_spawn_async_with_pipes; 3697 alias c_g_spawn_async g_spawn_async; 3698 alias c_g_spawn_sync g_spawn_sync; 3699 alias c_g_spawn_command_line_async g_spawn_command_line_async; 3700 alias c_g_spawn_command_line_sync g_spawn_command_line_sync; 3701 alias c_g_spawn_close_pid g_spawn_close_pid; 3702 3703 // glib.FileUtils 3704 3705 alias c_g_file_error_from_errno g_file_error_from_errno; 3706 alias c_g_file_set_contents g_file_set_contents; 3707 alias c_g_mkstemp_full g_mkstemp_full; 3708 alias c_g_file_read_link g_file_read_link; 3709 alias c_g_mkdir_with_parents g_mkdir_with_parents; 3710 alias c_g_unlink g_unlink; 3711 alias c_g_rmdir g_rmdir; 3712 alias c_g_access g_access; 3713 alias c_g_chdir g_chdir; 3714 3715 // glib.Directory 3716 3717 alias c_g_dir_rewind g_dir_rewind; 3718 alias c_g_dir_close g_dir_close; 3719 3720 // glib.MappedFile 3721 3722 alias c_g_mapped_file_new g_mapped_file_new; 3723 alias c_g_mapped_file_ref g_mapped_file_ref; 3724 alias c_g_mapped_file_unref g_mapped_file_unref; 3725 alias c_g_mapped_file_free g_mapped_file_free; 3726 alias c_g_mapped_file_get_length g_mapped_file_get_length; 3727 alias c_g_mapped_file_get_contents g_mapped_file_get_contents; 3728 3729 // glib.URI 3730 3731 alias c_g_uri_parse_scheme g_uri_parse_scheme; 3732 alias c_g_uri_escape_string g_uri_escape_string; 3733 alias c_g_uri_unescape_string g_uri_unescape_string; 3734 alias c_g_uri_unescape_segment g_uri_unescape_segment; 3735 alias c_g_uri_list_extract_uris g_uri_list_extract_uris; 3736 3737 // glib.Hostname 3738 3739 alias c_g_hostname_to_ascii g_hostname_to_ascii; 3740 alias c_g_hostname_to_unicode g_hostname_to_unicode; 3741 alias c_g_hostname_is_non_ascii g_hostname_is_non_ascii; 3742 alias c_g_hostname_is_ascii_encoded g_hostname_is_ascii_encoded; 3743 alias c_g_hostname_is_ip_address g_hostname_is_ip_address; 3744 3745 // glib.ShellUtils 3746 3747 alias c_g_shell_parse_argv g_shell_parse_argv; 3748 alias c_g_shell_quote g_shell_quote; 3749 alias c_g_shell_unquote g_shell_unquote; 3750 3751 // glib.OptionContext 3752 3753 alias c_g_option_context_new g_option_context_new; 3754 alias c_g_option_context_set_summary g_option_context_set_summary; 3755 alias c_g_option_context_get_summary g_option_context_get_summary; 3756 alias c_g_option_context_set_description g_option_context_set_description; 3757 alias c_g_option_context_get_description g_option_context_get_description; 3758 alias c_g_option_context_set_translate_func g_option_context_set_translate_func; 3759 alias c_g_option_context_set_translation_domain g_option_context_set_translation_domain; 3760 alias c_g_option_context_free g_option_context_free; 3761 alias c_g_option_context_parse g_option_context_parse; 3762 alias c_g_option_context_set_help_enabled g_option_context_set_help_enabled; 3763 alias c_g_option_context_get_help_enabled g_option_context_get_help_enabled; 3764 alias c_g_option_context_set_ignore_unknown_options g_option_context_set_ignore_unknown_options; 3765 alias c_g_option_context_get_ignore_unknown_options g_option_context_get_ignore_unknown_options; 3766 alias c_g_option_context_get_help g_option_context_get_help; 3767 alias c_g_option_context_add_main_entries g_option_context_add_main_entries; 3768 alias c_g_option_context_add_group g_option_context_add_group; 3769 alias c_g_option_context_set_main_group g_option_context_set_main_group; 3770 alias c_g_option_context_get_main_group g_option_context_get_main_group; 3771 3772 // glib.OptionGroup 3773 3774 alias c_g_option_group_new g_option_group_new; 3775 alias c_g_option_group_free g_option_group_free; 3776 alias c_g_option_group_add_entries g_option_group_add_entries; 3777 alias c_g_option_group_set_parse_hooks g_option_group_set_parse_hooks; 3778 alias c_g_option_group_set_error_hook g_option_group_set_error_hook; 3779 alias c_g_option_group_set_translate_func g_option_group_set_translate_func; 3780 alias c_g_option_group_set_translation_domain g_option_group_set_translation_domain; 3781 3782 // glib.Pattern 3783 3784 alias c_g_pattern_spec_new g_pattern_spec_new; 3785 alias c_g_pattern_spec_free g_pattern_spec_free; 3786 alias c_g_pattern_spec_equal g_pattern_spec_equal; 3787 alias c_g_pattern_match g_pattern_match; 3788 alias c_g_pattern_match_string g_pattern_match_string; 3789 alias c_g_pattern_match_simple g_pattern_match_simple; 3790 3791 // glib.Regex 3792 3793 alias c_g_regex_new g_regex_new; 3794 alias c_g_regex_ref g_regex_ref; 3795 alias c_g_regex_unref g_regex_unref; 3796 alias c_g_regex_get_pattern g_regex_get_pattern; 3797 alias c_g_regex_get_max_backref g_regex_get_max_backref; 3798 alias c_g_regex_get_capture_count g_regex_get_capture_count; 3799 alias c_g_regex_get_string_number g_regex_get_string_number; 3800 alias c_g_regex_get_compile_flags g_regex_get_compile_flags; 3801 alias c_g_regex_get_match_flags g_regex_get_match_flags; 3802 alias c_g_regex_escape_string g_regex_escape_string; 3803 alias c_g_regex_match_simple g_regex_match_simple; 3804 alias c_g_regex_match g_regex_match; 3805 alias c_g_regex_match_full g_regex_match_full; 3806 alias c_g_regex_match_all g_regex_match_all; 3807 alias c_g_regex_match_all_full g_regex_match_all_full; 3808 alias c_g_regex_split_simple g_regex_split_simple; 3809 alias c_g_regex_split g_regex_split; 3810 alias c_g_regex_split_full g_regex_split_full; 3811 alias c_g_regex_replace g_regex_replace; 3812 alias c_g_regex_replace_literal g_regex_replace_literal; 3813 alias c_g_regex_replace_eval g_regex_replace_eval; 3814 alias c_g_regex_check_replacement g_regex_check_replacement; 3815 3816 // glib.MatchInfo 3817 3818 alias c_g_match_info_get_regex g_match_info_get_regex; 3819 alias c_g_match_info_get_string g_match_info_get_string; 3820 alias c_g_match_info_free g_match_info_free; 3821 alias c_g_match_info_matches g_match_info_matches; 3822 alias c_g_match_info_next g_match_info_next; 3823 alias c_g_match_info_get_match_count g_match_info_get_match_count; 3824 alias c_g_match_info_is_partial_match g_match_info_is_partial_match; 3825 alias c_g_match_info_expand_references g_match_info_expand_references; 3826 alias c_g_match_info_fetch g_match_info_fetch; 3827 alias c_g_match_info_fetch_pos g_match_info_fetch_pos; 3828 alias c_g_match_info_fetch_named g_match_info_fetch_named; 3829 alias c_g_match_info_fetch_named_pos g_match_info_fetch_named_pos; 3830 alias c_g_match_info_fetch_all g_match_info_fetch_all; 3831 3832 // glib.SimpleXML 3833 3834 alias c_g_markup_escape_text g_markup_escape_text; 3835 alias c_g_markup_printf_escaped g_markup_printf_escaped; 3836 alias c_g_markup_vprintf_escaped g_markup_vprintf_escaped; 3837 alias c_g_markup_parse_context_end_parse g_markup_parse_context_end_parse; 3838 alias c_g_markup_parse_context_free g_markup_parse_context_free; 3839 alias c_g_markup_parse_context_get_position g_markup_parse_context_get_position; 3840 alias c_g_markup_parse_context_get_element g_markup_parse_context_get_element; 3841 alias c_g_markup_parse_context_get_element_stack g_markup_parse_context_get_element_stack; 3842 alias c_g_markup_parse_context_get_user_data g_markup_parse_context_get_user_data; 3843 alias c_g_markup_parse_context_new g_markup_parse_context_new; 3844 alias c_g_markup_parse_context_parse g_markup_parse_context_parse; 3845 alias c_g_markup_parse_context_push g_markup_parse_context_push; 3846 alias c_g_markup_parse_context_pop g_markup_parse_context_pop; 3847 alias c_g_markup_collect_attributes g_markup_collect_attributes; 3848 3849 // glib.KeyFile 3850 3851 alias c_g_key_file_new g_key_file_new; 3852 alias c_g_key_file_free g_key_file_free; 3853 alias c_g_key_file_set_list_separator g_key_file_set_list_separator; 3854 alias c_g_key_file_load_from_file g_key_file_load_from_file; 3855 alias c_g_key_file_load_from_data g_key_file_load_from_data; 3856 alias c_g_key_file_load_from_data_dirs g_key_file_load_from_data_dirs; 3857 alias c_g_key_file_load_from_dirs g_key_file_load_from_dirs; 3858 alias c_g_key_file_to_data g_key_file_to_data; 3859 alias c_g_key_file_get_start_group g_key_file_get_start_group; 3860 alias c_g_key_file_get_groups g_key_file_get_groups; 3861 alias c_g_key_file_get_keys g_key_file_get_keys; 3862 alias c_g_key_file_has_group g_key_file_has_group; 3863 alias c_g_key_file_has_key g_key_file_has_key; 3864 alias c_g_key_file_get_value g_key_file_get_value; 3865 alias c_g_key_file_get_string g_key_file_get_string; 3866 alias c_g_key_file_get_locale_string g_key_file_get_locale_string; 3867 alias c_g_key_file_get_boolean g_key_file_get_boolean; 3868 alias c_g_key_file_get_integer g_key_file_get_integer; 3869 alias c_g_key_file_get_int64 g_key_file_get_int64; 3870 alias c_g_key_file_get_uint64 g_key_file_get_uint64; 3871 alias c_g_key_file_get_double g_key_file_get_double; 3872 alias c_g_key_file_get_string_list g_key_file_get_string_list; 3873 alias c_g_key_file_get_locale_string_list g_key_file_get_locale_string_list; 3874 alias c_g_key_file_get_boolean_list g_key_file_get_boolean_list; 3875 alias c_g_key_file_get_integer_list g_key_file_get_integer_list; 3876 alias c_g_key_file_get_double_list g_key_file_get_double_list; 3877 alias c_g_key_file_get_comment g_key_file_get_comment; 3878 alias c_g_key_file_set_value g_key_file_set_value; 3879 alias c_g_key_file_set_string g_key_file_set_string; 3880 alias c_g_key_file_set_locale_string g_key_file_set_locale_string; 3881 alias c_g_key_file_set_boolean g_key_file_set_boolean; 3882 alias c_g_key_file_set_integer g_key_file_set_integer; 3883 alias c_g_key_file_set_int64 g_key_file_set_int64; 3884 alias c_g_key_file_set_uint64 g_key_file_set_uint64; 3885 alias c_g_key_file_set_double g_key_file_set_double; 3886 alias c_g_key_file_set_string_list g_key_file_set_string_list; 3887 alias c_g_key_file_set_locale_string_list g_key_file_set_locale_string_list; 3888 alias c_g_key_file_set_boolean_list g_key_file_set_boolean_list; 3889 alias c_g_key_file_set_integer_list g_key_file_set_integer_list; 3890 alias c_g_key_file_set_double_list g_key_file_set_double_list; 3891 alias c_g_key_file_set_comment g_key_file_set_comment; 3892 alias c_g_key_file_remove_group g_key_file_remove_group; 3893 alias c_g_key_file_remove_key g_key_file_remove_key; 3894 alias c_g_key_file_remove_comment g_key_file_remove_comment; 3895 3896 // glib.BookmarkFile 3897 3898 alias c_g_bookmark_file_new g_bookmark_file_new; 3899 alias c_g_bookmark_file_free g_bookmark_file_free; 3900 alias c_g_bookmark_file_load_from_file g_bookmark_file_load_from_file; 3901 alias c_g_bookmark_file_load_from_data g_bookmark_file_load_from_data; 3902 alias c_g_bookmark_file_load_from_data_dirs g_bookmark_file_load_from_data_dirs; 3903 alias c_g_bookmark_file_to_data g_bookmark_file_to_data; 3904 alias c_g_bookmark_file_to_file g_bookmark_file_to_file; 3905 alias c_g_bookmark_file_has_item g_bookmark_file_has_item; 3906 alias c_g_bookmark_file_has_group g_bookmark_file_has_group; 3907 alias c_g_bookmark_file_has_application g_bookmark_file_has_application; 3908 alias c_g_bookmark_file_get_size g_bookmark_file_get_size; 3909 alias c_g_bookmark_file_get_uris g_bookmark_file_get_uris; 3910 alias c_g_bookmark_file_get_title g_bookmark_file_get_title; 3911 alias c_g_bookmark_file_get_description g_bookmark_file_get_description; 3912 alias c_g_bookmark_file_get_mime_type g_bookmark_file_get_mime_type; 3913 alias c_g_bookmark_file_get_is_private g_bookmark_file_get_is_private; 3914 alias c_g_bookmark_file_get_icon g_bookmark_file_get_icon; 3915 alias c_g_bookmark_file_get_added g_bookmark_file_get_added; 3916 alias c_g_bookmark_file_get_modified g_bookmark_file_get_modified; 3917 alias c_g_bookmark_file_get_visited g_bookmark_file_get_visited; 3918 alias c_g_bookmark_file_get_groups g_bookmark_file_get_groups; 3919 alias c_g_bookmark_file_get_applications g_bookmark_file_get_applications; 3920 alias c_g_bookmark_file_get_app_info g_bookmark_file_get_app_info; 3921 alias c_g_bookmark_file_set_title g_bookmark_file_set_title; 3922 alias c_g_bookmark_file_set_description g_bookmark_file_set_description; 3923 alias c_g_bookmark_file_set_mime_type g_bookmark_file_set_mime_type; 3924 alias c_g_bookmark_file_set_is_private g_bookmark_file_set_is_private; 3925 alias c_g_bookmark_file_set_icon g_bookmark_file_set_icon; 3926 alias c_g_bookmark_file_set_added g_bookmark_file_set_added; 3927 alias c_g_bookmark_file_set_groups g_bookmark_file_set_groups; 3928 alias c_g_bookmark_file_set_modified g_bookmark_file_set_modified; 3929 alias c_g_bookmark_file_set_visited g_bookmark_file_set_visited; 3930 alias c_g_bookmark_file_set_app_info g_bookmark_file_set_app_info; 3931 alias c_g_bookmark_file_add_group g_bookmark_file_add_group; 3932 alias c_g_bookmark_file_add_application g_bookmark_file_add_application; 3933 alias c_g_bookmark_file_remove_group g_bookmark_file_remove_group; 3934 alias c_g_bookmark_file_remove_application g_bookmark_file_remove_application; 3935 alias c_g_bookmark_file_remove_item g_bookmark_file_remove_item; 3936 alias c_g_bookmark_file_move_item g_bookmark_file_move_item; 3937 3938 // glib.WindowsUtils 3939 3940 alias c_g_win32_error_message g_win32_error_message; 3941 alias c_g_win32_getlocale g_win32_getlocale; 3942 alias c_g_win32_get_package_installation_directory_of_module g_win32_get_package_installation_directory_of_module; 3943 alias c_g_win32_get_windows_version g_win32_get_windows_version; 3944 alias c_g_win32_locale_filename_from_utf8 g_win32_locale_filename_from_utf8; 3945 3946 // glib.MemorySlice 3947 3948 alias c_g_slice_alloc g_slice_alloc; 3949 alias c_g_slice_alloc0 g_slice_alloc0; 3950 alias c_g_slice_copy g_slice_copy; 3951 alias c_g_slice_free1 g_slice_free1; 3952 alias c_g_slice_free_chain_with_offset g_slice_free_chain_with_offset; 3953 3954 // glib.MemoryChunk 3955 3956 alias c_g_mem_chunk_new g_mem_chunk_new; 3957 alias c_g_mem_chunk_alloc g_mem_chunk_alloc; 3958 alias c_g_mem_chunk_alloc0 g_mem_chunk_alloc0; 3959 alias c_g_mem_chunk_free g_mem_chunk_free; 3960 alias c_g_mem_chunk_destroy g_mem_chunk_destroy; 3961 alias c_g_mem_chunk_reset g_mem_chunk_reset; 3962 alias c_g_mem_chunk_clean g_mem_chunk_clean; 3963 alias c_g_blow_chunks g_blow_chunks; 3964 alias c_g_mem_chunk_info g_mem_chunk_info; 3965 alias c_g_mem_chunk_print g_mem_chunk_print; 3966 3967 // glib.ListG 3968 3969 alias c_g_list_append g_list_append; 3970 alias c_g_list_prepend g_list_prepend; 3971 alias c_g_list_insert g_list_insert; 3972 alias c_g_list_insert_before g_list_insert_before; 3973 alias c_g_list_insert_sorted g_list_insert_sorted; 3974 alias c_g_list_remove g_list_remove; 3975 alias c_g_list_remove_link g_list_remove_link; 3976 alias c_g_list_delete_link g_list_delete_link; 3977 alias c_g_list_remove_all g_list_remove_all; 3978 alias c_g_list_free g_list_free; 3979 alias c_g_list_free_full g_list_free_full; 3980 alias c_g_list_alloc g_list_alloc; 3981 alias c_g_list_free_1 g_list_free_1; 3982 alias c_g_list_length g_list_length; 3983 alias c_g_list_copy g_list_copy; 3984 alias c_g_list_reverse g_list_reverse; 3985 alias c_g_list_sort g_list_sort; 3986 alias c_g_list_insert_sorted_with_data g_list_insert_sorted_with_data; 3987 alias c_g_list_sort_with_data g_list_sort_with_data; 3988 alias c_g_list_concat g_list_concat; 3989 alias c_g_list_foreach g_list_foreach; 3990 alias c_g_list_first g_list_first; 3991 alias c_g_list_last g_list_last; 3992 alias c_g_list_nth g_list_nth; 3993 alias c_g_list_nth_data g_list_nth_data; 3994 alias c_g_list_nth_prev g_list_nth_prev; 3995 alias c_g_list_find g_list_find; 3996 alias c_g_list_find_custom g_list_find_custom; 3997 alias c_g_list_position g_list_position; 3998 alias c_g_list_index g_list_index; 3999 alias c_g_list_push_allocator g_list_push_allocator; 4000 alias c_g_list_pop_allocator g_list_pop_allocator; 4001 4002 // glib.ListSG 4003 4004 alias c_g_slist_alloc g_slist_alloc; 4005 alias c_g_slist_append g_slist_append; 4006 alias c_g_slist_prepend g_slist_prepend; 4007 alias c_g_slist_insert g_slist_insert; 4008 alias c_g_slist_insert_before g_slist_insert_before; 4009 alias c_g_slist_insert_sorted g_slist_insert_sorted; 4010 alias c_g_slist_remove g_slist_remove; 4011 alias c_g_slist_remove_link g_slist_remove_link; 4012 alias c_g_slist_delete_link g_slist_delete_link; 4013 alias c_g_slist_remove_all g_slist_remove_all; 4014 alias c_g_slist_free g_slist_free; 4015 alias c_g_slist_free_full g_slist_free_full; 4016 alias c_g_slist_free_1 g_slist_free_1; 4017 alias c_g_slist_length g_slist_length; 4018 alias c_g_slist_copy g_slist_copy; 4019 alias c_g_slist_reverse g_slist_reverse; 4020 alias c_g_slist_insert_sorted_with_data g_slist_insert_sorted_with_data; 4021 alias c_g_slist_sort g_slist_sort; 4022 alias c_g_slist_sort_with_data g_slist_sort_with_data; 4023 alias c_g_slist_concat g_slist_concat; 4024 alias c_g_slist_foreach g_slist_foreach; 4025 alias c_g_slist_last g_slist_last; 4026 alias c_g_slist_nth g_slist_nth; 4027 alias c_g_slist_nth_data g_slist_nth_data; 4028 alias c_g_slist_find g_slist_find; 4029 alias c_g_slist_find_custom g_slist_find_custom; 4030 alias c_g_slist_position g_slist_position; 4031 alias c_g_slist_index g_slist_index; 4032 alias c_g_slist_push_allocator g_slist_push_allocator; 4033 alias c_g_slist_pop_allocator g_slist_pop_allocator; 4034 4035 // glib.QueueG 4036 4037 alias c_g_queue_new g_queue_new; 4038 alias c_g_queue_free g_queue_free; 4039 alias c_g_queue_init g_queue_init; 4040 alias c_g_queue_clear g_queue_clear; 4041 alias c_g_queue_is_empty g_queue_is_empty; 4042 alias c_g_queue_get_length g_queue_get_length; 4043 alias c_g_queue_reverse g_queue_reverse; 4044 alias c_g_queue_copy g_queue_copy; 4045 alias c_g_queue_foreach g_queue_foreach; 4046 alias c_g_queue_find g_queue_find; 4047 alias c_g_queue_find_custom g_queue_find_custom; 4048 alias c_g_queue_sort g_queue_sort; 4049 alias c_g_queue_push_head g_queue_push_head; 4050 alias c_g_queue_push_tail g_queue_push_tail; 4051 alias c_g_queue_push_nth g_queue_push_nth; 4052 alias c_g_queue_pop_head g_queue_pop_head; 4053 alias c_g_queue_pop_tail g_queue_pop_tail; 4054 alias c_g_queue_pop_nth g_queue_pop_nth; 4055 alias c_g_queue_peek_head g_queue_peek_head; 4056 alias c_g_queue_peek_tail g_queue_peek_tail; 4057 alias c_g_queue_peek_nth g_queue_peek_nth; 4058 alias c_g_queue_index g_queue_index; 4059 alias c_g_queue_remove g_queue_remove; 4060 alias c_g_queue_remove_all g_queue_remove_all; 4061 alias c_g_queue_insert_before g_queue_insert_before; 4062 alias c_g_queue_insert_after g_queue_insert_after; 4063 alias c_g_queue_insert_sorted g_queue_insert_sorted; 4064 alias c_g_queue_push_head_link g_queue_push_head_link; 4065 alias c_g_queue_push_tail_link g_queue_push_tail_link; 4066 alias c_g_queue_push_nth_link g_queue_push_nth_link; 4067 alias c_g_queue_pop_head_link g_queue_pop_head_link; 4068 alias c_g_queue_pop_tail_link g_queue_pop_tail_link; 4069 alias c_g_queue_pop_nth_link g_queue_pop_nth_link; 4070 alias c_g_queue_peek_head_link g_queue_peek_head_link; 4071 alias c_g_queue_peek_tail_link g_queue_peek_tail_link; 4072 alias c_g_queue_peek_nth_link g_queue_peek_nth_link; 4073 alias c_g_queue_link_index g_queue_link_index; 4074 alias c_g_queue_unlink g_queue_unlink; 4075 alias c_g_queue_delete_link g_queue_delete_link; 4076 4077 // glib.Sequence 4078 4079 alias c_g_sequence_new g_sequence_new; 4080 alias c_g_sequence_free g_sequence_free; 4081 alias c_g_sequence_get_length g_sequence_get_length; 4082 alias c_g_sequence_foreach g_sequence_foreach; 4083 alias c_g_sequence_foreach_range g_sequence_foreach_range; 4084 alias c_g_sequence_sort g_sequence_sort; 4085 alias c_g_sequence_sort_iter g_sequence_sort_iter; 4086 alias c_g_sequence_get_begin_iter g_sequence_get_begin_iter; 4087 alias c_g_sequence_get_end_iter g_sequence_get_end_iter; 4088 alias c_g_sequence_get_iter_at_pos g_sequence_get_iter_at_pos; 4089 alias c_g_sequence_append g_sequence_append; 4090 alias c_g_sequence_prepend g_sequence_prepend; 4091 alias c_g_sequence_insert_before g_sequence_insert_before; 4092 alias c_g_sequence_move g_sequence_move; 4093 alias c_g_sequence_swap g_sequence_swap; 4094 alias c_g_sequence_insert_sorted g_sequence_insert_sorted; 4095 alias c_g_sequence_insert_sorted_iter g_sequence_insert_sorted_iter; 4096 alias c_g_sequence_sort_changed g_sequence_sort_changed; 4097 alias c_g_sequence_sort_changed_iter g_sequence_sort_changed_iter; 4098 alias c_g_sequence_remove g_sequence_remove; 4099 alias c_g_sequence_remove_range g_sequence_remove_range; 4100 alias c_g_sequence_move_range g_sequence_move_range; 4101 alias c_g_sequence_search g_sequence_search; 4102 alias c_g_sequence_search_iter g_sequence_search_iter; 4103 alias c_g_sequence_lookup g_sequence_lookup; 4104 alias c_g_sequence_lookup_iter g_sequence_lookup_iter; 4105 alias c_g_sequence_get g_sequence_get; 4106 alias c_g_sequence_set g_sequence_set; 4107 alias c_g_sequence_range_get_midpoint g_sequence_range_get_midpoint; 4108 4109 // glib.SequenceIter 4110 4111 alias c_g_sequence_iter_is_begin g_sequence_iter_is_begin; 4112 alias c_g_sequence_iter_is_end g_sequence_iter_is_end; 4113 alias c_g_sequence_iter_next g_sequence_iter_next; 4114 alias c_g_sequence_iter_prev g_sequence_iter_prev; 4115 alias c_g_sequence_iter_get_position g_sequence_iter_get_position; 4116 alias c_g_sequence_iter_move g_sequence_iter_move; 4117 alias c_g_sequence_iter_get_sequence g_sequence_iter_get_sequence; 4118 alias c_g_sequence_iter_compare g_sequence_iter_compare; 4119 4120 // glib.TrashStack 4121 4122 alias c_g_trash_stack_push g_trash_stack_push; 4123 alias c_g_trash_stack_pop g_trash_stack_pop; 4124 alias c_g_trash_stack_peek g_trash_stack_peek; 4125 alias c_g_trash_stack_height g_trash_stack_height; 4126 4127 // glib.HashTable 4128 4129 alias c_g_hash_table_new g_hash_table_new; 4130 alias c_g_hash_table_new_full g_hash_table_new_full; 4131 alias c_g_hash_table_insert g_hash_table_insert; 4132 alias c_g_hash_table_replace g_hash_table_replace; 4133 alias c_g_hash_table_size g_hash_table_size; 4134 alias c_g_hash_table_lookup g_hash_table_lookup; 4135 alias c_g_hash_table_lookup_extended g_hash_table_lookup_extended; 4136 alias c_g_hash_table_foreach g_hash_table_foreach; 4137 alias c_g_hash_table_find g_hash_table_find; 4138 alias c_g_hash_table_remove g_hash_table_remove; 4139 alias c_g_hash_table_steal g_hash_table_steal; 4140 alias c_g_hash_table_foreach_remove g_hash_table_foreach_remove; 4141 alias c_g_hash_table_foreach_steal g_hash_table_foreach_steal; 4142 alias c_g_hash_table_remove_all g_hash_table_remove_all; 4143 alias c_g_hash_table_steal_all g_hash_table_steal_all; 4144 alias c_g_hash_table_get_keys g_hash_table_get_keys; 4145 alias c_g_hash_table_get_values g_hash_table_get_values; 4146 alias c_g_hash_table_destroy g_hash_table_destroy; 4147 alias c_g_hash_table_ref g_hash_table_ref; 4148 alias c_g_hash_table_unref g_hash_table_unref; 4149 alias c_g_direct_equal g_direct_equal; 4150 alias c_g_direct_hash g_direct_hash; 4151 alias c_g_int_equal g_int_equal; 4152 alias c_g_int_hash g_int_hash; 4153 alias c_g_int64_equal g_int64_equal; 4154 alias c_g_int64_hash g_int64_hash; 4155 alias c_g_double_equal g_double_equal; 4156 alias c_g_double_hash g_double_hash; 4157 alias c_g_str_equal g_str_equal; 4158 alias c_g_str_hash g_str_hash; 4159 4160 // glib.HashTableIter 4161 4162 alias c_g_hash_table_iter_init g_hash_table_iter_init; 4163 alias c_g_hash_table_iter_next g_hash_table_iter_next; 4164 alias c_g_hash_table_iter_get_hash_table g_hash_table_iter_get_hash_table; 4165 alias c_g_hash_table_iter_remove g_hash_table_iter_remove; 4166 alias c_g_hash_table_iter_steal g_hash_table_iter_steal; 4167 4168 // glib.StringG 4169 4170 alias c_g_string_new g_string_new; 4171 alias c_g_string_new_len g_string_new_len; 4172 alias c_g_string_sized_new g_string_sized_new; 4173 alias c_g_string_assign g_string_assign; 4174 alias c_g_string_vprintf g_string_vprintf; 4175 alias c_g_string_append_vprintf g_string_append_vprintf; 4176 alias c_g_string_printf g_string_printf; 4177 alias c_g_string_append_printf g_string_append_printf; 4178 alias c_g_string_append g_string_append; 4179 alias c_g_string_append_c g_string_append_c; 4180 alias c_g_string_append_unichar g_string_append_unichar; 4181 alias c_g_string_append_len g_string_append_len; 4182 alias c_g_string_append_uri_escaped g_string_append_uri_escaped; 4183 alias c_g_string_prepend g_string_prepend; 4184 alias c_g_string_prepend_c g_string_prepend_c; 4185 alias c_g_string_prepend_unichar g_string_prepend_unichar; 4186 alias c_g_string_prepend_len g_string_prepend_len; 4187 alias c_g_string_insert g_string_insert; 4188 alias c_g_string_insert_c g_string_insert_c; 4189 alias c_g_string_insert_unichar g_string_insert_unichar; 4190 alias c_g_string_insert_len g_string_insert_len; 4191 alias c_g_string_overwrite g_string_overwrite; 4192 alias c_g_string_overwrite_len g_string_overwrite_len; 4193 alias c_g_string_erase g_string_erase; 4194 alias c_g_string_truncate g_string_truncate; 4195 alias c_g_string_set_size g_string_set_size; 4196 alias c_g_string_free g_string_free; 4197 alias c_g_string_up g_string_up; 4198 alias c_g_string_down g_string_down; 4199 alias c_g_string_hash g_string_hash; 4200 alias c_g_string_equal g_string_equal; 4201 4202 // glib.StringGChunk 4203 4204 alias c_g_string_chunk_new g_string_chunk_new; 4205 alias c_g_string_chunk_insert g_string_chunk_insert; 4206 alias c_g_string_chunk_insert_const g_string_chunk_insert_const; 4207 alias c_g_string_chunk_insert_len g_string_chunk_insert_len; 4208 alias c_g_string_chunk_clear g_string_chunk_clear; 4209 alias c_g_string_chunk_free g_string_chunk_free; 4210 4211 // glib.ArrayG 4212 4213 alias c_g_array_new g_array_new; 4214 alias c_g_array_sized_new g_array_sized_new; 4215 alias c_g_array_ref g_array_ref; 4216 alias c_g_array_unref g_array_unref; 4217 alias c_g_array_get_element_size g_array_get_element_size; 4218 alias c_g_array_append_vals g_array_append_vals; 4219 alias c_g_array_prepend_vals g_array_prepend_vals; 4220 alias c_g_array_insert_vals g_array_insert_vals; 4221 alias c_g_array_remove_index g_array_remove_index; 4222 alias c_g_array_remove_index_fast g_array_remove_index_fast; 4223 alias c_g_array_remove_range g_array_remove_range; 4224 alias c_g_array_sort g_array_sort; 4225 alias c_g_array_sort_with_data g_array_sort_with_data; 4226 alias c_g_array_set_size g_array_set_size; 4227 alias c_g_array_free g_array_free; 4228 4229 // glib.PtrArray 4230 4231 alias c_g_ptr_array_new g_ptr_array_new; 4232 alias c_g_ptr_array_sized_new g_ptr_array_sized_new; 4233 alias c_g_ptr_array_new_with_free_func g_ptr_array_new_with_free_func; 4234 alias c_g_ptr_array_set_free_func g_ptr_array_set_free_func; 4235 alias c_g_ptr_array_ref g_ptr_array_ref; 4236 alias c_g_ptr_array_unref g_ptr_array_unref; 4237 alias c_g_ptr_array_add g_ptr_array_add; 4238 alias c_g_ptr_array_remove g_ptr_array_remove; 4239 alias c_g_ptr_array_remove_index g_ptr_array_remove_index; 4240 alias c_g_ptr_array_remove_fast g_ptr_array_remove_fast; 4241 alias c_g_ptr_array_remove_index_fast g_ptr_array_remove_index_fast; 4242 alias c_g_ptr_array_remove_range g_ptr_array_remove_range; 4243 alias c_g_ptr_array_sort g_ptr_array_sort; 4244 alias c_g_ptr_array_sort_with_data g_ptr_array_sort_with_data; 4245 alias c_g_ptr_array_set_size g_ptr_array_set_size; 4246 alias c_g_ptr_array_free g_ptr_array_free; 4247 alias c_g_ptr_array_foreach g_ptr_array_foreach; 4248 4249 // glib.ByteArray 4250 4251 alias c_g_byte_array_new g_byte_array_new; 4252 alias c_g_byte_array_sized_new g_byte_array_sized_new; 4253 alias c_g_byte_array_ref g_byte_array_ref; 4254 alias c_g_byte_array_unref g_byte_array_unref; 4255 alias c_g_byte_array_append g_byte_array_append; 4256 alias c_g_byte_array_prepend g_byte_array_prepend; 4257 alias c_g_byte_array_remove_index g_byte_array_remove_index; 4258 alias c_g_byte_array_remove_index_fast g_byte_array_remove_index_fast; 4259 alias c_g_byte_array_remove_range g_byte_array_remove_range; 4260 alias c_g_byte_array_sort g_byte_array_sort; 4261 alias c_g_byte_array_sort_with_data g_byte_array_sort_with_data; 4262 alias c_g_byte_array_set_size g_byte_array_set_size; 4263 alias c_g_byte_array_free g_byte_array_free; 4264 4265 // glib.BBTree 4266 4267 alias c_g_tree_new g_tree_new; 4268 alias c_g_tree_ref g_tree_ref; 4269 alias c_g_tree_unref g_tree_unref; 4270 alias c_g_tree_new_with_data g_tree_new_with_data; 4271 alias c_g_tree_new_full g_tree_new_full; 4272 alias c_g_tree_insert g_tree_insert; 4273 alias c_g_tree_replace g_tree_replace; 4274 alias c_g_tree_nnodes g_tree_nnodes; 4275 alias c_g_tree_height g_tree_height; 4276 alias c_g_tree_lookup g_tree_lookup; 4277 alias c_g_tree_lookup_extended g_tree_lookup_extended; 4278 alias c_g_tree_foreach g_tree_foreach; 4279 alias c_g_tree_traverse g_tree_traverse; 4280 alias c_g_tree_search g_tree_search; 4281 alias c_g_tree_remove g_tree_remove; 4282 alias c_g_tree_steal g_tree_steal; 4283 alias c_g_tree_destroy g_tree_destroy; 4284 4285 // glib.Node 4286 4287 alias c_g_node_new g_node_new; 4288 alias c_g_node_copy g_node_copy; 4289 alias c_g_node_copy_deep g_node_copy_deep; 4290 alias c_g_node_insert g_node_insert; 4291 alias c_g_node_insert_before g_node_insert_before; 4292 alias c_g_node_insert_after g_node_insert_after; 4293 alias c_g_node_prepend g_node_prepend; 4294 alias c_g_node_reverse_children g_node_reverse_children; 4295 alias c_g_node_traverse g_node_traverse; 4296 alias c_g_node_children_foreach g_node_children_foreach; 4297 alias c_g_node_get_root g_node_get_root; 4298 alias c_g_node_find g_node_find; 4299 alias c_g_node_find_child g_node_find_child; 4300 alias c_g_node_child_index g_node_child_index; 4301 alias c_g_node_child_position g_node_child_position; 4302 alias c_g_node_last_child g_node_last_child; 4303 alias c_g_node_nth_child g_node_nth_child; 4304 alias c_g_node_first_sibling g_node_first_sibling; 4305 alias c_g_node_last_sibling g_node_last_sibling; 4306 alias c_g_node_depth g_node_depth; 4307 alias c_g_node_n_nodes g_node_n_nodes; 4308 alias c_g_node_n_children g_node_n_children; 4309 alias c_g_node_is_ancestor g_node_is_ancestor; 4310 alias c_g_node_max_height g_node_max_height; 4311 alias c_g_node_unlink g_node_unlink; 4312 alias c_g_node_destroy g_node_destroy; 4313 alias c_g_node_push_allocator g_node_push_allocator; 4314 alias c_g_node_pop_allocator g_node_pop_allocator; 4315 4316 // glib.Quark 4317 4318 alias c_g_quark_from_string g_quark_from_string; 4319 alias c_g_quark_from_static_string g_quark_from_static_string; 4320 alias c_g_quark_to_string g_quark_to_string; 4321 alias c_g_quark_try_string g_quark_try_string; 4322 alias c_g_intern_string g_intern_string; 4323 alias c_g_intern_static_string g_intern_static_string; 4324 4325 // glib.DataList 4326 4327 alias c_g_datalist_init g_datalist_init; 4328 alias c_g_datalist_id_set_data_full g_datalist_id_set_data_full; 4329 alias c_g_datalist_id_get_data g_datalist_id_get_data; 4330 alias c_g_datalist_id_remove_no_notify g_datalist_id_remove_no_notify; 4331 alias c_g_datalist_foreach g_datalist_foreach; 4332 alias c_g_datalist_clear g_datalist_clear; 4333 alias c_g_datalist_set_flags g_datalist_set_flags; 4334 alias c_g_datalist_unset_flags g_datalist_unset_flags; 4335 alias c_g_datalist_get_flags g_datalist_get_flags; 4336 4337 // glib.Dataset 4338 4339 alias c_g_dataset_id_set_data_full g_dataset_id_set_data_full; 4340 alias c_g_dataset_id_get_data g_dataset_id_get_data; 4341 alias c_g_dataset_id_remove_no_notify g_dataset_id_remove_no_notify; 4342 alias c_g_dataset_foreach g_dataset_foreach; 4343 alias c_g_dataset_destroy g_dataset_destroy; 4344 4345 // glib.Relation 4346 4347 alias c_g_relation_new g_relation_new; 4348 alias c_g_relation_index g_relation_index; 4349 alias c_g_relation_insert g_relation_insert; 4350 alias c_g_relation_exists g_relation_exists; 4351 alias c_g_relation_count g_relation_count; 4352 alias c_g_relation_select g_relation_select; 4353 alias c_g_relation_delete g_relation_delete; 4354 alias c_g_relation_destroy g_relation_destroy; 4355 alias c_g_relation_print g_relation_print; 4356 4357 // glib.Tuples 4358 4359 alias c_g_tuples_destroy g_tuples_destroy; 4360 alias c_g_tuples_index g_tuples_index; 4361 4362 // glib.Cache 4363 4364 alias c_g_cache_new g_cache_new; 4365 alias c_g_cache_insert g_cache_insert; 4366 alias c_g_cache_remove g_cache_remove; 4367 alias c_g_cache_destroy g_cache_destroy; 4368 alias c_g_cache_key_foreach g_cache_key_foreach; 4369 alias c_g_cache_value_foreach g_cache_value_foreach; 4370 4371 // glib.Allocator 4372 4373 alias c_g_allocator_new g_allocator_new; 4374 alias c_g_allocator_free g_allocator_free; 4375 4376 // glib.VariantType 4377 4378 alias c_g_variant_type_free g_variant_type_free; 4379 alias c_g_variant_type_copy g_variant_type_copy; 4380 alias c_g_variant_type_new g_variant_type_new; 4381 alias c_g_variant_type_string_is_valid g_variant_type_string_is_valid; 4382 alias c_g_variant_type_string_scan g_variant_type_string_scan; 4383 alias c_g_variant_type_get_string_length g_variant_type_get_string_length; 4384 alias c_g_variant_type_peek_string g_variant_type_peek_string; 4385 alias c_g_variant_type_dup_string g_variant_type_dup_string; 4386 alias c_g_variant_type_is_definite g_variant_type_is_definite; 4387 alias c_g_variant_type_is_container g_variant_type_is_container; 4388 alias c_g_variant_type_is_basic g_variant_type_is_basic; 4389 alias c_g_variant_type_is_maybe g_variant_type_is_maybe; 4390 alias c_g_variant_type_is_array g_variant_type_is_array; 4391 alias c_g_variant_type_is_tuple g_variant_type_is_tuple; 4392 alias c_g_variant_type_is_dict_entry g_variant_type_is_dict_entry; 4393 alias c_g_variant_type_is_variant g_variant_type_is_variant; 4394 alias c_g_variant_type_hash g_variant_type_hash; 4395 alias c_g_variant_type_equal g_variant_type_equal; 4396 alias c_g_variant_type_is_subtype_of g_variant_type_is_subtype_of; 4397 alias c_g_variant_type_new_maybe g_variant_type_new_maybe; 4398 alias c_g_variant_type_new_array g_variant_type_new_array; 4399 alias c_g_variant_type_new_tuple g_variant_type_new_tuple; 4400 alias c_g_variant_type_new_dict_entry g_variant_type_new_dict_entry; 4401 alias c_g_variant_type_element g_variant_type_element; 4402 alias c_g_variant_type_n_items g_variant_type_n_items; 4403 alias c_g_variant_type_first g_variant_type_first; 4404 alias c_g_variant_type_next g_variant_type_next; 4405 alias c_g_variant_type_key g_variant_type_key; 4406 alias c_g_variant_type_value g_variant_type_value; 4407 4408 // glib.Variant 4409 4410 alias c_g_variant_unref g_variant_unref; 4411 alias c_g_variant_ref g_variant_ref; 4412 alias c_g_variant_ref_sink g_variant_ref_sink; 4413 alias c_g_variant_is_floating g_variant_is_floating; 4414 alias c_g_variant_get_type g_variant_get_type; 4415 alias c_g_variant_get_type_string g_variant_get_type_string; 4416 alias c_g_variant_is_of_type g_variant_is_of_type; 4417 alias c_g_variant_is_container g_variant_is_container; 4418 alias c_g_variant_compare g_variant_compare; 4419 alias c_g_variant_classify g_variant_classify; 4420 alias c_g_variant_get g_variant_get; 4421 alias c_g_variant_get_va g_variant_get_va; 4422 alias c_g_variant_new g_variant_new; 4423 alias c_g_variant_new_va g_variant_new_va; 4424 alias c_g_variant_new_boolean g_variant_new_boolean; 4425 alias c_g_variant_new_byte g_variant_new_byte; 4426 alias c_g_variant_new_int16 g_variant_new_int16; 4427 alias c_g_variant_new_uint16 g_variant_new_uint16; 4428 alias c_g_variant_new_int32 g_variant_new_int32; 4429 alias c_g_variant_new_uint32 g_variant_new_uint32; 4430 alias c_g_variant_new_int64 g_variant_new_int64; 4431 alias c_g_variant_new_uint64 g_variant_new_uint64; 4432 alias c_g_variant_new_handle g_variant_new_handle; 4433 alias c_g_variant_new_double g_variant_new_double; 4434 alias c_g_variant_new_string g_variant_new_string; 4435 alias c_g_variant_new_object_path g_variant_new_object_path; 4436 alias c_g_variant_is_object_path g_variant_is_object_path; 4437 alias c_g_variant_new_signature g_variant_new_signature; 4438 alias c_g_variant_is_signature g_variant_is_signature; 4439 alias c_g_variant_new_variant g_variant_new_variant; 4440 alias c_g_variant_new_strv g_variant_new_strv; 4441 alias c_g_variant_new_bytestring g_variant_new_bytestring; 4442 alias c_g_variant_new_bytestring_array g_variant_new_bytestring_array; 4443 alias c_g_variant_get_boolean g_variant_get_boolean; 4444 alias c_g_variant_get_byte g_variant_get_byte; 4445 alias c_g_variant_get_int16 g_variant_get_int16; 4446 alias c_g_variant_get_uint16 g_variant_get_uint16; 4447 alias c_g_variant_get_int32 g_variant_get_int32; 4448 alias c_g_variant_get_uint32 g_variant_get_uint32; 4449 alias c_g_variant_get_int64 g_variant_get_int64; 4450 alias c_g_variant_get_uint64 g_variant_get_uint64; 4451 alias c_g_variant_get_handle g_variant_get_handle; 4452 alias c_g_variant_get_double g_variant_get_double; 4453 alias c_g_variant_get_string g_variant_get_string; 4454 alias c_g_variant_dup_string g_variant_dup_string; 4455 alias c_g_variant_get_variant g_variant_get_variant; 4456 alias c_g_variant_get_strv g_variant_get_strv; 4457 alias c_g_variant_dup_strv g_variant_dup_strv; 4458 alias c_g_variant_get_bytestring g_variant_get_bytestring; 4459 alias c_g_variant_dup_bytestring g_variant_dup_bytestring; 4460 alias c_g_variant_get_bytestring_array g_variant_get_bytestring_array; 4461 alias c_g_variant_dup_bytestring_array g_variant_dup_bytestring_array; 4462 alias c_g_variant_new_maybe g_variant_new_maybe; 4463 alias c_g_variant_new_array g_variant_new_array; 4464 alias c_g_variant_new_tuple g_variant_new_tuple; 4465 alias c_g_variant_new_dict_entry g_variant_new_dict_entry; 4466 alias c_g_variant_get_maybe g_variant_get_maybe; 4467 alias c_g_variant_n_children g_variant_n_children; 4468 alias c_g_variant_get_child_value g_variant_get_child_value; 4469 alias c_g_variant_get_child g_variant_get_child; 4470 alias c_g_variant_lookup_value g_variant_lookup_value; 4471 alias c_g_variant_lookup g_variant_lookup; 4472 alias c_g_variant_get_fixed_array g_variant_get_fixed_array; 4473 alias c_g_variant_get_size g_variant_get_size; 4474 alias c_g_variant_get_data g_variant_get_data; 4475 alias c_g_variant_store g_variant_store; 4476 alias c_g_variant_new_from_data g_variant_new_from_data; 4477 alias c_g_variant_byteswap g_variant_byteswap; 4478 alias c_g_variant_get_normal_form g_variant_get_normal_form; 4479 alias c_g_variant_is_normal_form g_variant_is_normal_form; 4480 alias c_g_variant_hash g_variant_hash; 4481 alias c_g_variant_equal g_variant_equal; 4482 alias c_g_variant_print g_variant_print; 4483 alias c_g_variant_print_string g_variant_print_string; 4484 alias c_g_variant_parse g_variant_parse; 4485 alias c_g_variant_new_parsed_va g_variant_new_parsed_va; 4486 alias c_g_variant_new_parsed g_variant_new_parsed; 4487 4488 // glib.VariantIter 4489 4490 alias c_g_variant_iter_copy g_variant_iter_copy; 4491 alias c_g_variant_iter_free g_variant_iter_free; 4492 alias c_g_variant_iter_init g_variant_iter_init; 4493 alias c_g_variant_iter_n_children g_variant_iter_n_children; 4494 alias c_g_variant_iter_new g_variant_iter_new; 4495 alias c_g_variant_iter_next_value g_variant_iter_next_value; 4496 alias c_g_variant_iter_next g_variant_iter_next; 4497 alias c_g_variant_iter_loop g_variant_iter_loop; 4498 4499 // glib.VariantBuilder 4500 4501 alias c_g_variant_builder_unref g_variant_builder_unref; 4502 alias c_g_variant_builder_ref g_variant_builder_ref; 4503 alias c_g_variant_builder_new g_variant_builder_new; 4504 alias c_g_variant_builder_init g_variant_builder_init; 4505 alias c_g_variant_builder_clear g_variant_builder_clear; 4506 alias c_g_variant_builder_add_value g_variant_builder_add_value; 4507 alias c_g_variant_builder_add g_variant_builder_add; 4508 alias c_g_variant_builder_add_parsed g_variant_builder_add_parsed; 4509 alias c_g_variant_builder_end g_variant_builder_end; 4510 alias c_g_variant_builder_open g_variant_builder_open; 4511 alias c_g_variant_builder_close g_variant_builder_close;