2010-01-31 00:24:23 +01:00
|
|
|
/*
|
2015-04-13 09:36:54 +02:00
|
|
|
* This file is part of mpv.
|
2010-01-31 00:24:23 +01:00
|
|
|
*
|
2015-04-13 09:36:54 +02:00
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
2010-01-31 00:24:23 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2015-04-13 09:36:54 +02:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2010-01-31 00:24:23 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2015-04-13 09:36:54 +02:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-31 00:24:23 +01:00
|
|
|
*/
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_PARSER_CFG_H
|
|
|
|
#define MPLAYER_PARSER_CFG_H
|
2006-09-12 18:24:23 +02:00
|
|
|
|
2008-03-05 00:35:24 +01:00
|
|
|
#include "m_config.h"
|
|
|
|
|
2013-08-02 17:59:43 +02:00
|
|
|
int m_config_parse_config_file(m_config_t* config, const char *conffile,
|
2014-04-19 22:05:17 +02:00
|
|
|
char *initial_section, int flags);
|
2006-09-12 18:24:23 +02:00
|
|
|
|
2015-04-10 20:40:50 +02:00
|
|
|
int m_config_parse(m_config_t *config, const char *location, bstr data,
|
|
|
|
char *initial_section, int flags);
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_PARSER_CFG_H */
|