2010-01-31 00:24:23 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_SUBOPT_HELPER_H
|
|
|
|
#define MPLAYER_SUBOPT_HELPER_H
|
2004-12-31 12:11:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file subopt-helper.h
|
|
|
|
*
|
2009-05-13 04:58:57 +02:00
|
|
|
* \brief Datatype and functions declarations for usage
|
2004-12-31 12:11:24 +01:00
|
|
|
* of the suboption parser.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define OPT_ARG_BOOL 0
|
|
|
|
#define OPT_ARG_INT 1
|
|
|
|
#define OPT_ARG_STR 2
|
2005-01-19 18:10:20 +01:00
|
|
|
#define OPT_ARG_MSTRZ 3 ///< A malloced, zero terminated string, use free()!
|
2005-10-10 14:56:44 +02:00
|
|
|
#define OPT_ARG_FLOAT 4
|
2004-12-31 12:11:24 +01:00
|
|
|
|
2004-12-31 15:57:12 +01:00
|
|
|
typedef int (*opt_test_f)(void *);
|
|
|
|
|
2004-12-31 12:11:24 +01:00
|
|
|
/** simple structure for defining the option name, type and storage location */
|
|
|
|
typedef struct opt_s
|
|
|
|
{
|
2006-07-27 19:35:06 +02:00
|
|
|
const char * name; ///< string that identifies the option
|
2004-12-31 12:11:24 +01:00
|
|
|
int type; ///< option type as defined in subopt-helper.h
|
|
|
|
void * valp; ///< pointer to the mem where the value should be stored
|
2004-12-31 15:57:12 +01:00
|
|
|
opt_test_f test; ///< argument test func ( optional )
|
2004-12-31 12:11:24 +01:00
|
|
|
} opt_t;
|
|
|
|
|
|
|
|
/** parses the string for the options specified in opt */
|
2009-03-06 21:41:02 +01:00
|
|
|
int subopt_parse( char const * const str, const opt_t * opts );
|
2004-12-31 12:11:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*------------------ arg specific types and declaration -------------------*/
|
|
|
|
typedef struct strarg_s
|
|
|
|
{
|
2005-01-19 18:10:20 +01:00
|
|
|
int len; ///< length of the string determined by the parser
|
2004-12-31 12:11:24 +01:00
|
|
|
char const * str; ///< pointer to position inside the parse string
|
|
|
|
} strarg_t;
|
|
|
|
|
2005-02-19 21:14:00 +01:00
|
|
|
|
2010-01-01 14:18:49 +01:00
|
|
|
int int_non_neg(void *iptr);
|
|
|
|
int int_pos(void *iptr);
|
2005-02-19 21:14:00 +01:00
|
|
|
|
2006-07-15 18:03:12 +02:00
|
|
|
int strargcmp(strarg_t *arg, const char *str);
|
2005-06-16 11:08:07 +02:00
|
|
|
int strargcasecmp(strarg_t *arg, char *str);
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_SUBOPT_HELPER_H */
|