]> sigrok.org Git - libsigrok.git/blob - bindings/swig/libsigrok.i
8534040d0859ebeae999eeeec8f80915261f94e6
[libsigrok.git] / bindings / swig / libsigrok.i
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 %include "cpointer.i"
21 %include "carrays.i"
22 %include "cdata.i"
23 %include "stdint.i"
24
25 %{
26 #include "libsigrok/libsigrok.h"
27 %}
28
29 typedef void *gpointer;
30
31 typedef struct _GSList GSList;
32
33 struct _GSList
34 {
35         gpointer data;
36         GSList *next;
37 };
38
39 void g_slist_free(GSList *list);
40
41 GVariant *g_variant_new_uint64(uint64_t value);
42
43 %include "libsigrok/libsigrok.h"
44 #undef SR_API
45 #define SR_API
46 %ignore sr_config_info_name_get;
47 %include "libsigrok/proto.h"
48 %include "libsigrok/version.h"
49
50 %pointer_functions(struct sr_context *, sr_context_ptr_ptr);
51 %array_functions(struct sr_dev_driver *, sr_dev_driver_ptr_array);
52 %pointer_cast(gpointer, struct sr_dev_inst *, gpointer_to_sr_dev_inst_ptr);
53 %pointer_cast(void *, struct sr_datafeed_logic *, void_ptr_to_sr_datafeed_logic_ptr)