Some further makefile improvement.
[glib.git] / gerror.h
blob458c20a7d88165b99de7056ebb434449462f31cc
1 /* gerror.h - Error reporting system
3 * Copyright 2000 Red Hat, Inc.
5 * The Gnome Library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * The Gnome Library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with the Gnome Library; see the file COPYING.LIB. If not,
17 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __GERROR_H__
22 #define __GERROR_H__
24 #ifdef __cplusplus
25 extern "C"
27 #endif
29 typedef struct _GError GError;
31 struct _GError
33 GQuark domain;
34 gint code;
35 gchar *message;
38 GError* g_error_new (GQuark domain,
39 gint code,
40 const gchar *format,
41 ...) G_GNUC_PRINTF (3, 4);
43 GError* g_error_new_literal (GQuark domain,
44 gint code,
45 const gchar *message);
47 void g_error_free (GError *error);
48 GError* g_error_copy (const GError *error);
50 gboolean g_error_matches (const GError *error,
51 GQuark domain,
52 gint code);
54 /* if (err) *err = g_error_new(domain, code, format, ...), also has
55 * some sanity checks.
57 void g_set_error (GError **err,
58 GQuark domain,
59 gint code,
60 const gchar *format,
61 ...) G_GNUC_PRINTF (4, 5);
63 /* if (dest) *dest = src; also has some sanity checks.
65 void g_propagate_error (GError **dest,
66 GError *src);
68 /* if (err && *err) { g_error_free(*err); *err = NULL; } */
69 void g_clear_error (GError **err);
72 #ifdef __cplusplus
74 #endif
76 #endif /* __GERROR_H__ */