mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-25 02:18:55 +02:00
Bumps documentation to 93% symbol coverage, touching most
of the public files. Fixes broken function documentation prototypes. Fixes GCancellable inaccuracies. Removes unnecessary incomplete gtk-doc headers in private files. svn path=/trunk/; revision=5953
This commit is contained in:
@@ -25,9 +25,17 @@
|
||||
#include "gioerror.h"
|
||||
|
||||
/**
|
||||
* g_io_error_quark:
|
||||
* SECTION:gioerror
|
||||
* @short_description: Error helper functions.
|
||||
*
|
||||
* Return value: The quark used as %G_IO_ERROR
|
||||
**/
|
||||
|
||||
/**
|
||||
* g_io_error_quark:
|
||||
*
|
||||
* Gets the GIO Error Quark.
|
||||
*
|
||||
* Return value: a #GQuark.
|
||||
**/
|
||||
GQuark
|
||||
g_io_error_quark (void)
|
||||
@@ -35,6 +43,14 @@ g_io_error_quark (void)
|
||||
return g_quark_from_static_string ("g-io-error-quark");
|
||||
}
|
||||
|
||||
/**
|
||||
* g_io_error_from_errno:
|
||||
* @err_no: Error number as defined in errno.h.
|
||||
*
|
||||
* Converts errno.h error codes into GIO error codes.
|
||||
*
|
||||
* Returns: #GIOErrorEnum value for the given errno.h error number.
|
||||
**/
|
||||
GIOErrorEnum
|
||||
g_io_error_from_errno (gint err_no)
|
||||
{
|
||||
|
Reference in New Issue
Block a user