~ubuntu-branches/ubuntu/vivid/glib2.0/vivid-proposed

« back to all changes in this revision

Viewing changes to gio/gioerror.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2014-03-24 20:58:34 UTC
  • mfrom: (1.66.13)
  • Revision ID: package-import@ubuntu.com-20140324205834-8hsgok8k36ftocqa
Tags: 2.40.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 * g_io_error_from_errno:
45
45
 * @err_no: Error number as defined in errno.h.
46
46
 *
47
 
 * Converts errno.h error codes into GIO error codes.
 
47
 * Converts errno.h error codes into GIO error codes. The fallback
 
48
 * value %G_IO_ERROR_FAILED is returned for error codes not currently
 
49
 * handled (but note that future GLib releases may return a more
 
50
 * specific value instead).
48
51
 *
49
52
 * Returns: #GIOErrorEnum value for the given errno.h error number.
50
53
 **/
229
232
 * g_io_error_from_win32_error:
230
233
 * @error_code: Windows error number.
231
234
 *
232
 
 * Converts some common error codes into GIO error codes. The
233
 
 * fallback value G_IO_ERROR_FAILED is returned for error codes not
234
 
 * handled.
 
235
 * Converts some common error codes into GIO error codes. The fallback
 
236
 * value %G_IO_ERROR_FAILED is returned for error codes not currently
 
237
 * handled (but note that future GLib releases may return a more
 
238
 * specific value instead).
235
239
 *
236
240
 * Returns: #GIOErrorEnum value for the given error number.
237
241
 *