meson: dont pass the default required value everywhere
[pygobject.git] / gi / pygi-invoke.h
blobaa51f3f218b07e06fc0d8fd44062d59cc3e9e66b
1 /* -*- Mode: C; c-basic-offset: 4 -*-
2 * vim: tabstop=4 shiftwidth=4 expandtab
4 * Copyright (C) 2005-2009 Johan Dahlin <johan@gnome.org>
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.
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.
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/>.
20 #ifndef __PYGI_INVOKE_H__
21 #define __PYGI_INVOKE_H__
23 #include <Python.h>
25 #include <girepository.h>
27 #include "pygi-info.h"
28 #include "pygi-invoke-state-struct.h"
30 G_BEGIN_DECLS
32 PyObject *pygi_invoke_c_callable (PyGIFunctionCache *function_cache,
33 PyGIInvokeState *state,
34 PyObject *py_args, PyObject *py_kwargs);
35 PyObject *pygi_callable_info_invoke (GIBaseInfo *info, PyObject *py_args,
36 PyObject *kwargs, PyGICallableCache *cache,
37 gpointer user_data);
38 PyObject *_wrap_g_callable_info_invoke (PyGIBaseInfo *self, PyObject *py_args,
39 PyObject *kwargs);
41 gboolean _pygi_invoke_arg_state_init (PyGIInvokeState *state);
43 void _pygi_invoke_arg_state_free (PyGIInvokeState *state);
45 G_END_DECLS
47 #endif /* __PYGI_INVOKE_H__ */