From 6e9cbdc10448203e7c8b2de41447442fcc9f7bae Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 13 May 2009 02:58:57 +0000 Subject: whitespace cosmetics: Remove all trailing whitespace. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2 --- m_option.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'm_option.h') diff --git a/m_option.h b/m_option.h index e12c91bed8..9417fb562e 100644 --- a/m_option.h +++ b/m_option.h @@ -187,10 +187,10 @@ struct m_option_type { unsigned int size; /// See \ref OptionTypeFlags. unsigned int flags; - + /// Parse the data from a string. /** It is the only required function, all others can be NULL. - * + * * \param opt The option that is parsed. * \param name The full option name. * \param param The parameter to parse. @@ -201,7 +201,7 @@ struct m_option_type { * consumed. For details see \ref OptionParserReturn. */ int (*parse)(const m_option_t* opt,const char *name, char *param, void* dst, int src); - + /// Print back a value in string form. /** \param opt The option to print. * \param val Pointer to the memory holding the data to be printed. @@ -224,7 +224,7 @@ struct m_option_type { * \param src Pointer to the source memory. */ void (*save)(const m_option_t* opt,void* dst, void* src); - + /// Set the value in the program (dst) from a save slot. /** \param opt The option to copy. * \param dst Pointer to the destination memory. @@ -256,20 +256,20 @@ struct m_option_type { struct m_option { /// Option name. const char *name; - + /// Reserved for higher level APIs, it shouldn't be used by parsers. /** The suboption parser and func types do use it. They should instead * use the priv field but this was inherited from older versions of the * config code. */ void *p; - + /// Option type. const m_option_type_t* type; - + /// See \ref OptionFlags. unsigned int flags; - + /// \brief Mostly useful for numeric types, the \ref M_OPT_MIN flags must /// also be set. double min; @@ -277,7 +277,7 @@ struct m_option { /// \brief Mostly useful for numeric types, the \ref M_OPT_MAX flags must /// also be set. double max; - + /// Type dependent data (for all kinds of extended settings). /** This used to be a function pointer to hold a 'reverse to defaults' func. * Now it can be used to pass any type of extra args needed by the parser. @@ -427,7 +427,7 @@ struct m_option { /// Returned when the given parameter couldn't be parsed. #define M_OPT_INVALID -3 -/// \brief Returned if the value is "out of range". The exact meaning may +/// \brief Returned if the value is "out of range". The exact meaning may /// vary from type to type. #define M_OPT_OUT_OF_RANGE -4 @@ -456,7 +456,7 @@ struct m_option { /** \ingroup Options * This function takes the possible wildcards into account (see * \ref M_OPT_TYPE_ALLOW_WILDCARD). - * + * * \param list Pointer to an array of \ref m_option. * \param name Name of the option. * \return The matching option or NULL. -- cgit v1.2.3