From: Uwe Hermann Date: Mon, 12 Jun 2017 00:50:23 +0000 (+0200) Subject: Various Doxygen fixes. X-Git-Tag: libsigrokdecode-0.5.0~3 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=c947ab01c5db200fafbd93d26f9898bcc477b30e;p=libsigrokdecode.git Various Doxygen fixes. --- diff --git a/decoder.c b/decoder.c index 9c57b1c..64292bc 100644 --- a/decoder.c +++ b/decoder.c @@ -594,6 +594,8 @@ static int check_method(PyObject *py_dec, const char *mod_name, * @param d The decoder to use. Must not be NULL. * * @return The API version of the decoder, or 0 upon errors. + * + * @private */ SRD_PRIV long srd_decoder_apiver(const struct srd_decoder *d) { diff --git a/instance.c b/instance.c index 61e0ea8..b716f2f 100644 --- a/instance.c +++ b/instance.c @@ -676,6 +676,7 @@ SRD_API int srd_inst_initial_pins_set_all(struct srd_decoder_inst *di, GArray *i return SRD_OK; } +/** @private */ SRD_PRIV void oldpins_array_free(struct srd_decoder_inst *di) { if (!di) @@ -783,6 +784,7 @@ static gboolean sample_matches(uint8_t old_sample, uint8_t sample, struct srd_te return FALSE; } +/** @private */ SRD_PRIV void match_array_free(struct srd_decoder_inst *di) { if (!di || !di->match_array) @@ -792,6 +794,7 @@ SRD_PRIV void match_array_free(struct srd_decoder_inst *di) di->match_array = NULL; } +/** @private */ SRD_PRIV void condition_list_free(struct srd_decoder_inst *di) { GSList *l, *ll;