diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2013-02-09 22:10:57 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2013-02-09 22:15:54 +0100 |
commit | 54fdeeefffe31d32dddaf0f3d6a99dc7b3bc2448 (patch) | |
tree | 20dc47ceba49e6604958107842bfc296cf6533bf | |
parent | 57790bc8c558ccf2e57b3d973c043088232628c7 (diff) | |
download | libsigrokdecode-54fdeeefffe31d32dddaf0f3d6a99dc7b3bc2448.tar.gz libsigrokdecode-54fdeeefffe31d32dddaf0f3d6a99dc7b3bc2448.zip |
Doxygen: Add @file items for the relevant files.
These short descriptions are shown in the "Files" section of the
Doxygen output.
-rw-r--r-- | decoder.c | 6 | ||||
-rw-r--r-- | log.c | 6 | ||||
-rw-r--r-- | sigrokdecode.h.in | 16 | ||||
-rw-r--r-- | version.c | 6 |
4 files changed, 34 insertions, 0 deletions
@@ -23,6 +23,12 @@ #include "sigrokdecode-internal.h" #include <glib.h> +/** + * @file + * + * Listing, loading, unloading, and handling protocol decoders. + */ + /** @cond PRIVATE */ /* The list of protocol decoders. */ @@ -23,6 +23,12 @@ #include <stdarg.h> #include <stdio.h> +/** + * @file + * + * Controlling the libsigrokdecode message logging functionality. + */ + /* Currently selected libsigrokdecode loglevel. Default: SRD_LOG_WARN. */ static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */ diff --git a/sigrokdecode.h.in b/sigrokdecode.h.in index 033e30e..ca069c5 100644 --- a/sigrokdecode.h.in +++ b/sigrokdecode.h.in @@ -30,6 +30,22 @@ extern "C" { #endif +/** + * @file + * + * The public libsigrokdecode header file to be used by frontends. + * + * This is the only file that libsigrokdecode users (frontends) are supposed + * to use and include. There are other header files which get installed with + * libsigrokdecode, but those are not meant to be used directly by frontends. + * + * The correct way to get/use the libsigrokdecode API functions is: + * + * @code{.c} + * #include <sigrokdecode.h> + * @endcode + */ + /* * Package version macros (can be used for conditional compilation). */ @@ -20,6 +20,12 @@ #include "sigrokdecode.h" +/** + * @file + * + * Version number querying functions. + */ + SRD_API int srd_package_version_major_get(void) { return SRD_PACKAGE_VERSION_MAJOR; |