Mercurial > mplayer.hg
diff parser-cfg.c @ 18265:1a14fde7680d
Doxygen Attack! - Chapter 3
author | albeu |
---|---|
date | Tue, 25 Apr 2006 01:26:10 +0000 |
parents | 63909962d3fc |
children | 08fc089138f4 |
line wrap: on
line diff
--- a/parser-cfg.c Mon Apr 24 23:48:15 2006 +0000 +++ b/parser-cfg.c Tue Apr 25 01:26:10 2006 +0000 @@ -1,3 +1,12 @@ + +/// \defgroup ConfigParsers Config parsers +/// +/// The \ref ConfigParsers make use of the \ref Config to setup the config variables, +/// the command line parsers also build the playlist. +///@{ + +/// \file + #include "config.h" #include <stdio.h> @@ -14,10 +23,17 @@ #include "m_option.h" #include "m_config.h" +/// Maximal include depth. #define MAX_RECURSION_DEPTH 8 +/// Current include depth. static int recursion_depth = 0; +/// Setup the \ref Config from a config file. +/** \param config The config object. + * \param conffile Path to the config file. + * \return 1 on sucess, -1 on error. + */ int m_config_parse_config_file(m_config_t* config, char *conffile) { #define PRINT_LINENUM mp_msg(MSGT_CFGPARSER,MSGL_V,"%s(%d): ", conffile, line_num) @@ -226,3 +242,5 @@ --recursion_depth; return ret; } + +///@}