]> sigrok.org Git - libsigrok.git/blame - bindings/swig/libsigrok.i
Tell SWIG that gpointer is really void *.
[libsigrok.git] / bindings / swig / libsigrok.i
CommitLineData
758b01ad
ML
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2013 Martin Ling <martin-sigrok@earth.li>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20%module libsigrok
21%include "cpointer.i"
22%include "carrays.i"
23
24%{
25#include "libsigrok/libsigrok.h"
26%}
27
7aafb892
ML
28typedef void * gpointer;
29
758b01ad
ML
30typedef struct _GSList GSList;
31
32struct _GSList
33{
34 gpointer data;
35 GSList *next;
36};
37
38void g_slist_free(GSList *list);
39
40%include "libsigrok/libsigrok.h"
41#undef SR_API
42#define SR_API
43%ignore sr_config_info_name_get;
44%include "libsigrok/proto.h"
45%include "libsigrok/version.h"
46
47%pointer_functions(struct sr_context *, sr_context_ptr_ptr);
48%array_functions(struct sr_dev_driver *, sr_dev_driver_ptr_array);
49%pointer_cast(gpointer, struct sr_dev_inst *, gpointer_to_sr_dev_inst_ptr);