tests: Remove TestMainLoop.test_concurrency
[pygobject.git] / gi / pygi-error.h
blobe7cc05f9b5f6b775aa03ada317989cf480dc2f5c
1 /* -*- Mode: C; c-basic-offset: 4 -*-
2 * vim: tabstop=4 shiftwidth=4 expandtab
4 * Copyright (C) 1998-2003 James Henstridge
5 * 2004-2008 Johan Dahlin
6 * Copyright (C) 2014 Simon Feltman <sfeltman@gnome.org>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #ifndef __PYGI_ERROR_H__
23 #define __PYGI_ERROR_H__
25 #include <girepository.h>
26 #include "pygi-cache.h"
28 G_BEGIN_DECLS
30 extern PyObject *PyGError;
32 gboolean pygi_error_check (GError **error);
34 PyObject* pygi_error_marshal_to_py (GError **error);
36 gboolean pygi_error_marshal_from_py (PyObject *pyerr,
37 GError **error);
39 gboolean pygi_gerror_exception_check (GError **error);
41 PyObject* pygi_register_exception_for_domain (gchar *name,
42 gint error_domain);
44 PyGIArgCache* pygi_arg_gerror_new_from_info (GITypeInfo *type_info,
45 GIArgInfo *arg_info, /* may be null */
46 GITransfer transfer,
47 PyGIDirection direction);
49 void pygi_error_register_types (PyObject *module);
51 G_END_DECLS
53 #endif /*__PYGI_ERROR_H__*/