mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-05 04:06:34 -05:00
all places: doxygen cleanups
I see no errors with these changes using doxygen 1.8.1.1 . Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
e23fb2c4de
commit
b6eb0f9bfd
15 changed files with 140 additions and 105 deletions
|
|
@ -60,14 +60,21 @@ const char *snd_strerror(int errnum)
|
|||
return snd_error_codes[errnum];
|
||||
}
|
||||
|
||||
#ifndef DOC_HIDDEN
|
||||
#ifdef HAVE___THREAD
|
||||
#define TLS_PFX __thread
|
||||
#else
|
||||
#define TLS_PFX /* NOP */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static TLS_PFX snd_local_error_handler_t local_error = NULL;
|
||||
|
||||
/**
|
||||
* \brief Install local error handler
|
||||
* \param func The local error handler function
|
||||
* \retval Previous local error handler function
|
||||
*/
|
||||
snd_local_error_handler_t snd_lib_error_set_local(snd_local_error_handler_t func)
|
||||
{
|
||||
snd_local_error_handler_t old = local_error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue