56bf383d22e294abfb7df0c49191df505266c5e1
[platform/upstream/python-gobject.git] / gi / pygi-marshal-cleanup.h
1 /* -*- Mode: C; c-basic-offset: 4 -*-
2  * vim: tabstop=4 shiftwidth=4 expandtab
3  *
4  * Copyright (C) 2011 John (J5) Palmieri <johnp@redhat.com>, Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef __PYGI_MARSHAL_CLEANUP_H__
21 #define __PYGI_MARSHAL_CLEANUP_H__
22
23 #include "pygi-private.h"
24
25 G_BEGIN_DECLS
26
27 void pygi_marshal_cleanup_args_from_py_marshal_success  (PyGIInvokeState   *state,
28                                                          PyGICallableCache *cache);
29 void pygi_marshal_cleanup_args_from_py_parameter_fail   (PyGIInvokeState   *state,
30                                                          PyGICallableCache *cache,
31                                                          gssize failed_arg_index);
32
33 void pygi_marshal_cleanup_args_to_py_marshal_success (PyGIInvokeState   *state,
34                                                       PyGICallableCache *cache);
35 void pygi_marshal_cleanup_args_return_fail           (PyGIInvokeState   *state,
36                                                       PyGICallableCache *cache);
37 void pygi_marshal_cleanup_args_to_py_parameter_fail  (PyGIInvokeState   *state,
38                                                       PyGICallableCache *cache,
39                                                       gssize failed_to_py_arg_index);
40 G_END_DECLS
41
42 #endif /* __PYGI_MARSHAL_CLEANUP_H__ */