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