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:
Andrew Walton
2007-11-27 14:00:13 +00:00
parent 6d071b4ab6
commit 5247f12f36
88 changed files with 3708 additions and 747 deletions

View File

@@ -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)
{