📄 glib-unused.sgml
字号:
<!-- ##### FUNCTION g_desktop_entry_has_group ##### --><para></para>@entry: @group_name: @Returns: <!-- ##### FUNCTION g_desktop_entry_has_key ##### --><para></para>@entry: @group_name: @key: @error: @Returns: <!-- ##### FUNCTION g_desktop_entry_new ##### --><para></para>@flags: @error: @Returns: <!-- ##### FUNCTION g_desktop_entry_new_from_data ##### --><para></para>@data: @length: @legal_start_groups: @flags: @error: @Returns: <!-- ##### FUNCTION g_desktop_entry_new_from_data_dirs ##### --><para></para>@file: @full_path: @legal_start_groups: @flags: @error: @Returns: <!-- ##### FUNCTION g_desktop_entry_new_from_file ##### --><para></para>@file: @legal_start_groups: @flags: @error: @Returns: <!-- ##### FUNCTION g_desktop_entry_remove_group ##### --><para></para>@entry: @group_name: @error: <!-- ##### FUNCTION g_desktop_entry_remove_key ##### --><para></para>@entry: @group_name: @key: @error: <!-- ##### FUNCTION g_desktop_entry_set_boolean ##### --><para></para>@entry: @group_name: @key: @boolean: @error: <!-- ##### FUNCTION g_desktop_entry_set_boolean_list ##### --><para></para>@entry: @group_name: @key: @list: @length: @error: <!-- ##### FUNCTION g_desktop_entry_set_integer ##### --><para></para>@entry: @group_name: @key: @integer: @error: <!-- ##### FUNCTION g_desktop_entry_set_integer_list ##### --><para></para>@entry: @group_name: @key: @list: @length: @error: <!-- ##### FUNCTION g_desktop_entry_set_locale_string ##### --><para></para>@entry: @group_name: @key: @locale: @string: @error: <!-- ##### FUNCTION g_desktop_entry_set_locale_string_list ##### --><para></para>@entry: @group_name: @key: @locale: @list: @length: @error: <!-- ##### FUNCTION g_desktop_entry_set_string ##### --><para></para>@entry: @group_name: @key: @string: @error: <!-- ##### FUNCTION g_desktop_entry_set_string_list ##### --><para></para>@entry: @group_name: @key: @list: @length: @error: <!-- ##### FUNCTION g_desktop_entry_to_data ##### --><para></para>@entry: @length: @error: @Returns: <!-- ##### FUNCTION g_file_replace ##### --><para></para>@filename: @contents: @length: @error: @Returns: <!-- ##### FUNCTION g_format_file_size_for_display ##### --><para></para>@size: @Returns: <!-- ##### FUNCTION g_io_channel_error_quark ##### --><para></para>@Returns: <!-- ##### VARIABLE g_log_domain_glib ##### --><para>The log domain used for messages logged by GLib itself.</para><!-- ##### FUNCTION g_main_add_poll ##### --><para>Adds a file descriptor to be polled.This is usually combined with g_source_add() to add an event source.The event source's check function will typically test the reventsfield in the #GPollFD struct and return TRUE if events need to be processed.</para>@fd: a #GPollFD, which is a file descriptor together with a bitwisecombination of #GIOCondition flags determining which events to poll for.@priority: the priority of the poll, which should be the same as the priorityused for g_source_add() to ensure that the file descriptor is polled wheneverthe results may be needed.See #G_PRIORITY_DEFAULT, #G_PRIORITY_DEFAULT_IDLE, #G_PRIORITY_HIGH,#G_PRIORITY_HIGH_IDLE, and #G_PRIORITY_LOW.<!-- ##### FUNCTION g_main_context_get ##### --><para></para>@thread: @Returns: <!-- ##### FUNCTION g_main_loop_destroy ##### --><para></para>@loop: <!-- ##### FUNCTION g_main_remove_poll ##### --><para>Removes a file descriptor from the list being polled.</para>@fd: the #GPollFD to remove.<!-- ##### FUNCTION g_main_win32_get_poll_func ##### --><para></para>@Returns: <!-- ##### FUNCTION g_mem_check ##### --><para>Checks if the given memory has already been freed. If it has it outputsa warning message.To use this function you must configure glib with the flag'--enable-mem-check=yes' before compiling.</para>@mem: the memory to check.<!-- ##### FUNCTION g_regex_error_quark ##### --><para></para>@Returns: <!-- ##### FUNCTION g_regex_free ##### --><para></para>@regex: <!-- ##### FUNCTION g_scanner_stat_mode ##### --><para>Gets the file attributes.This is the <structfield>st_mode</structfield> field from the<structname>stat</structname> structure. See the <function>stat()</function>documentation.</para>@filename: the file name.@Returns: the file attributes.<!-- ##### FUNCTION g_set_error_handler ##### --><para>Sets the function to be called to handle error messages.This function is deprecated in favour of the new logging facilities.</para>@func: the function to be called to handle error messages.@Returns: the old error handler.<!-- ##### FUNCTION g_set_message_handler ##### --><para>Sets the function to be called to handle messages.This function is deprecated in favour of the new logging facilities.</para>@func: the function to be called to handle normal messages.@Returns: the old message handler.<!-- ##### FUNCTION g_set_warning_handler ##### --><para>Sets the function to be called to handle warning messages.This function is deprecated in favour of the new logging facilities.</para>@func: the function to be called to handle warning messages.@Returns: the old warning handler.<!-- ##### FUNCTION g_source_add ##### --><para></para>@priority: @can_recurse: @funcs: @source_data: @user_data: @notify: @Returns: @source: @context: <!-- ##### FUNCTION g_source_connect ##### --><para></para>@source: @func: @data: @notify: <!-- ##### FUNCTION g_source_connect_indirect ##### --><para></para>@source: @callback_data: @callback_funcs: <!-- ##### FUNCTION g_source_remove_by_source_data ##### --><para>Removes the first event source found with the given source data.</para><para>Event sources are sorted with the highest priority first. Sources with equalpriority are stored in the order in which they were added.</para>@source_data: the source data, which contains information specific to thetype of source.@Returns: TRUE if an event source was found and removed.<!-- ##### FUNCTION g_static_private_get_for_thread ##### --><para></para>@private_key: @thread: @Returns: <!-- ##### FUNCTION g_static_private_set_for_thread ##### --><para></para>@private_key: @thread: @data: @notify: <!-- ##### MACRO g_string ##### --><para>Turns the argument into a string literal by using the '#' stringizing operator.</para>@x: text to convert to a literal string.<!-- ##### MACRO getcwd ##### --><para></para><!-- ##### MACRO getpid ##### --><para></para><!-- ##### MACRO lseek ##### --><para></para><!-- ##### MACRO open ##### --><para></para><!-- ##### FUNCTION opendir ##### --><para>Provided for UNIX emulation on Windows; see documentation for <function>opendir()</function>in any UNIX manual.</para>@Param1: @Returns: <!-- ##### MACRO pclose ##### --><para></para><!-- ##### MACRO pipe ##### --><para>Provided for UNIX emulation on Windows; see documentation for pipe()in any UNIX manual.</para>@phandles: file descriptors, the first one for reading, the second one for writing.<!-- ##### MACRO popen ##### --><para></para><!-- ##### MACRO read ##### --><para></para><!-- ##### MACRO readdir ##### --><para>Provided for UNIX emulation on Windows; see documentation for <function>readdir()</function>in any UNIX manual.</para><!-- ##### FUNCTION rewinddir ##### --><para>Provided for UNIX emulation on Windows; see documentation for <function>rewinddir()</function>in any UNIX manual.</para>@Param1: <!-- ##### MACRO write ##### --><para></para>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -