summaryrefslogtreecommitdiff
path: root/sigrokdecode-internal.h
diff options
context:
space:
mode:
authorBert Vermeulen <bert@biot.com>2012-02-12 13:47:07 +0100
committerBert Vermeulen <bert@biot.com>2012-02-12 13:47:07 +0100
commitee4ed2279e3d3d4b2911aa2a1ed4effcbd1bbe60 (patch)
tree582695b756b7cbfbbb85870024b17eebb77334db /sigrokdecode-internal.h
parent65e1c7d091956e42aa4d97d7b639e10076e6f8ff (diff)
downloadlibsigrokdecode-ee4ed2279e3d3d4b2911aa2a1ed4effcbd1bbe60.tar.gz
libsigrokdecode-ee4ed2279e3d3d4b2911aa2a1ed4effcbd1bbe60.zip
srd: no public API functions use python-specific arguments now
Diffstat (limited to 'sigrokdecode-internal.h')
-rw-r--r--sigrokdecode-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sigrokdecode-internal.h b/sigrokdecode-internal.h
index 60914c3..56d3691 100644
--- a/sigrokdecode-internal.h
+++ b/sigrokdecode-internal.h
@@ -22,8 +22,6 @@
#define LIBSIGROKDECODE_SIGROKDECODE_INTERNAL_H
#include "sigrokdecode.h"
-// #include <stdarg.h>
-// #include <glib.h>
/*--- Macros ----------------------------------------------------------------*/
@@ -59,5 +57,7 @@ SRD_PRIV int py_attr_as_str(PyObject *py_obj, const char *attr, char **outstr);
SRD_PRIV int py_dictitem_as_str(PyObject *py_obj, const char *key, char **outstr);
SRD_PRIV int py_str_as_str(PyObject *py_str, char **outstr);
SRD_PRIV int py_strlist_to_char(PyObject *py_strlist, char ***outstr);
+SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(GSList *stack,
+ PyObject *obj);
#endif