diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2013-05-03 23:09:53 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2013-05-03 23:09:53 +0200 |
commit | 30b770d5375522bd014502b9348aff3ee36e830d (patch) | |
tree | 0dbf363a49cc7834c2c78633bbd82c5eac4b5a61 | |
parent | 3d0530ef2115b56d3750c3557a0d45bd3831b7c6 (diff) | |
download | libsigrokdecode-30b770d5375522bd014502b9348aff3ee36e830d.tar.gz libsigrokdecode-30b770d5375522bd014502b9348aff3ee36e830d.zip |
libsigrokdecode-internal.h: Cosmetics.
-rw-r--r-- | libsigrokdecode-internal.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libsigrokdecode-internal.h b/libsigrokdecode-internal.h index 718f11e..10b7fa7 100644 --- a/libsigrokdecode-internal.h +++ b/libsigrokdecode-internal.h @@ -27,19 +27,18 @@ /*--- controller.c ----------------------------------------------------------*/ SRD_PRIV int srd_decoder_searchpath_add(const char *path); +SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(const GSList *stack, + const PyObject *obj); SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di, PyObject *args); SRD_PRIV int srd_inst_decode(uint64_t start_samplenum, const struct srd_decoder_inst *dec, const uint8_t *inbuf, uint64_t inbuflen); SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di); SRD_PRIV void srd_inst_free_all(GSList *stack); +SRD_PRIV void *srd_pd_output_callback_find(int output_type); SRD_PRIV int srd_inst_pd_output_add(struct srd_decoder_inst *di, int output_type, const char *output_id); -/*--- decoder.c -------------------------------------------------------------*/ - -SRD_PRIV void *srd_pd_output_callback_find(int output_type); - /*--- exception.c -----------------------------------------------------------*/ SRD_PRIV void srd_exception_catch(const char *format, ...); @@ -61,7 +60,5 @@ SRD_PRIV int py_dictitem_as_str(const PyObject *py_obj, const char *key, char **outstr); SRD_PRIV int py_str_as_str(const PyObject *py_str, char **outstr); SRD_PRIV int py_strlist_to_char(const PyObject *py_strlist, char ***outstr); -SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(const GSList *stack, - const PyObject *obj); #endif |