diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-15 22:00:24 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-18 14:34:22 +0100 |
commit | 361fdcaafec8ddd37f0d381204e4c2a22c56b238 (patch) | |
tree | 3ec78b57af80df493faf87048ee6f85f06f205ba /sigrokdecode-internal.h | |
parent | ed2306a6f29bc4d85f5f248c83fff252b22c60a5 (diff) | |
download | libsigrokdecode-361fdcaafec8ddd37f0d381204e4c2a22c56b238.tar.gz libsigrokdecode-361fdcaafec8ddd37f0d381204e4c2a22c56b238.zip |
srd: Cosmetics, fix/add Doxygen comments.
Diffstat (limited to 'sigrokdecode-internal.h')
-rw-r--r-- | sigrokdecode-internal.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sigrokdecode-internal.h b/sigrokdecode-internal.h index 3a9df2e..23f52b8 100644 --- a/sigrokdecode-internal.h +++ b/sigrokdecode-internal.h @@ -29,14 +29,15 @@ SRD_PRIV int add_modulepath(const char *path); SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di, PyObject *args); SRD_PRIV int srd_inst_decode(uint64_t start_samplenum, - struct srd_decoder_inst *dec, - uint8_t *inbuf, uint64_t inbuflen); + struct srd_decoder_inst *dec, + 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 int pd_add(struct srd_decoder_inst *di, int output_type, char *output_id); /*--- decoder.c -------------------------------------------------------------*/ + SRD_PRIV void *srd_find_callback(int output_type); /*--- exception.c -----------------------------------------------------------*/ @@ -59,6 +60,6 @@ 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); + PyObject *obj); #endif |