diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-02-09 19:17:54 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-02-10 09:30:41 +0100 |
commit | a33a0e3bd59214cc4ddb021389f5c2ad91134587 (patch) | |
tree | 6ac3a7bc459bbaa02cf5a763197aa05646b23c2a /sigrokdecode-internal.h | |
parent | 55c3c5f4b9d38b85fae2c39a8a6150b4c50b1bdb (diff) | |
download | libsigrokdecode-a33a0e3bd59214cc4ddb021389f5c2ad91134587.tar.gz libsigrokdecode-a33a0e3bd59214cc4ddb021389f5c2ad91134587.zip |
srd: Move private symbols to sigrokdecode-internal.h.
Diffstat (limited to 'sigrokdecode-internal.h')
-rw-r--r-- | sigrokdecode-internal.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sigrokdecode-internal.h b/sigrokdecode-internal.h index 86a77e4..6443f96 100644 --- a/sigrokdecode-internal.h +++ b/sigrokdecode-internal.h @@ -35,6 +35,15 @@ #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a) #endif +/*--- controller.c ----------------------------------------------------------*/ + +SRD_PRIV int pd_add(struct srd_decoder_instance *di, int output_type, + char *output_id); + +/*--- exception.c -----------------------------------------------------------*/ + +SRD_PRIV void catch_exception(const char *format, ...); + /*--- log.c -----------------------------------------------------------------*/ SRD_PRIV int srd_log(int loglevel, const char *format, ...); @@ -44,4 +53,11 @@ SRD_PRIV int srd_info(const char *format, ...); SRD_PRIV int srd_warn(const char *format, ...); SRD_PRIV int srd_err(const char *format, ...); +/*--- util.c ----------------------------------------------------------------*/ + +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); + #endif |