summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-02-10 14:32:06 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-02-10 14:32:06 +0000
commit2c82d5a1d85378dd0168914b3fb2ee5e0ef1abe7 (patch)
tree0ebe32cf2dad0d8341f04c25a4dcba1bbf6e375f /m_option.h
parentfccc9cf57d0283975a84f9c4f49069f1710bf1b2 (diff)
downloadmpv-2c82d5a1d85378dd0168914b3fb2ee5e0ef1abe7.tar.bz2
mpv-2c82d5a1d85378dd0168914b3fb2ee5e0ef1abe7.tar.xz
m_option_type_double
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11948 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_option.h')
-rw-r--r--m_option.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/m_option.h b/m_option.h
index ae386c0195..dc691d87f3 100644
--- a/m_option.h
+++ b/m_option.h
@@ -11,6 +11,7 @@ struct m_struct_st;
extern m_option_type_t m_option_type_flag;
extern m_option_type_t m_option_type_int;
extern m_option_type_t m_option_type_float;
+extern m_option_type_t m_option_type_double;
extern m_option_type_t m_option_type_string;
extern m_option_type_t m_option_type_string_list;
extern m_option_type_t m_option_type_position;
@@ -78,6 +79,7 @@ extern m_obj_params_t m_span_params_def;
#define CONF_TYPE_FLAG (&m_option_type_flag)
#define CONF_TYPE_INT (&m_option_type_int)
#define CONF_TYPE_FLOAT (&m_option_type_float)
+#define CONF_TYPE_DOUBLE (&m_option_type_double)
#define CONF_TYPE_STRING (&m_option_type_string)
#define CONF_TYPE_FUNC (&m_option_type_func)
#define CONF_TYPE_FUNC_PARAM (&m_option_type_func_param)