X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoder.c;h=3d20b26b115770daca4eb1a14172c19662a4f377;hp=cbca0b840376c60de504dcc1bd91cdd449c6bef4;hb=3bf689988fc1e8db9cb3997039b06f683c413fc1;hpb=38ff5046e8344940601f2b9eb5d8dbfbef975c30 diff --git a/decoder.c b/decoder.c index cbca0b8..3d20b26 100644 --- a/decoder.c +++ b/decoder.c @@ -23,12 +23,30 @@ #include "sigrokdecode-internal.h" #include +/** + * @file + * + * Listing, loading, unloading, and handling protocol decoders. + */ + +/** + * @defgroup grp_decoder Protocol decoders + * + * Handling protocol decoders. + * + * @{ + */ + +/** @cond PRIVATE */ + /* The list of protocol decoders. */ SRD_PRIV GSList *pd_list = NULL; /* module_sigrokdecode.c */ extern SRD_PRIV PyObject *mod_sigrokdecode; +/** @endcond */ + /** * Returns the list of supported/loaded protocol decoders. * @@ -422,3 +440,5 @@ SRD_API int srd_decoder_unload_all(void) return SRD_OK; } + +/** @} */