EXTRACT_STATIC = NO
JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
-ENABLED_SECTIONS = "static"
+ENABLED_SECTIONS = ""
+PREDEFINED = "DOC_HIDDEN"
OPTIMIZE_OUTPUT_FOR_C = YES # doxygen 1.2.6 option
#include "local.h"
/**
- * \if static
* Array of error codes in US ASCII.
- * \endif
*/
static const char *snd_error_codes[] =
{
}
/**
- * \if static
* \brief The default error handler function.
* \param file The filename where the error was hit.
* \param line The line number.
* \param ... Optional arguments.
*
* Prints the error message including location to stderr.
- * \endif
*/
static void snd_lib_error_default(const char *file, int line, const char *function, int err, const char *fmt, ...)
{
va_end(arg);
}
+#ifndef DOC_HIDDEN
/**
* Pointer to the error handler function.
*/
snd_lib_error_handler_t *snd_lib_error = snd_lib_error_default;
+#endif
/**
* \brief Set the error handler.