]> sigrok.org Git - libsigrok.git/blame - bindings/swig/libsigrok.i
GPL headers: Use correct project name.
[libsigrok.git] / bindings / swig / libsigrok.i
CommitLineData
758b01ad 1/*
50985c20 2 * This file is part of the libsigrok project.
758b01ad
ML
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
758b01ad
ML
20%include "cpointer.i"
21%include "carrays.i"
ab0340c8 22%include "stdint.i"
758b01ad
ML
23
24%{
25#include "libsigrok/libsigrok.h"
26%}
27
8dc93c84 28typedef void *gpointer;
7aafb892 29
758b01ad
ML
30typedef struct _GSList GSList;
31
32struct _GSList
33{
8dc93c84
UH
34 gpointer data;
35 GSList *next;
758b01ad
ML
36};
37
38void g_slist_free(GSList *list);
39
22f8cb54 40GVariant *g_variant_new_uint64(uint64_t value);
a8d162f6
ML
41GVariant *g_variant_new_boolean(gboolean value);
42GVariant *g_variant_new_double(double value);
43GVariant *g_variant_new_string(char *value);
44GVariant *g_variant_new_tuple(GVariant *children[], unsigned long n_children);
45char *g_variant_get_type_string(GVariant *value);
46uint64_t g_variant_get_uint64(GVariant *value);
47gboolean g_variant_get_boolean(GVariant *value);
48double g_variant_get_double(GVariant *value);
49char *g_variant_get_string(GVariant *value, unsigned long *length);
50GVariant *g_variant_get_child_value(GVariant *value, unsigned long index);
22f8cb54 51
758b01ad
ML
52%include "libsigrok/libsigrok.h"
53#undef SR_API
54#define SR_API
55%ignore sr_config_info_name_get;
56%include "libsigrok/proto.h"
57%include "libsigrok/version.h"
58
15574a3c 59%array_class(float, float_array);
a8d162f6
ML
60%pointer_functions(GVariant *, gvariant_ptr_ptr);
61%array_functions(GVariant *, gvariant_ptr_array);
758b01ad
ML
62%pointer_functions(struct sr_context *, sr_context_ptr_ptr);
63%array_functions(struct sr_dev_driver *, sr_dev_driver_ptr_array);
64%pointer_cast(gpointer, struct sr_dev_inst *, gpointer_to_sr_dev_inst_ptr);
966fcbe3 65%pointer_cast(void *, struct sr_datafeed_logic *, void_ptr_to_sr_datafeed_logic_ptr)
15574a3c 66%pointer_cast(void *, struct sr_datafeed_analog *, void_ptr_to_sr_datafeed_analog_ptr)