summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-02 11:17:50 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-02 11:17:50 +0000
commit39bb720ef8418d1c0db87b773f5467b16b395d96 (patch)
tree21087f0a58d56d66219916388bb9a078d73b7557 /m_option.h
parentb9102d0b06e8f7cd9c0c4d762a09af3bdf292a19 (diff)
downloadmpv-39bb720ef8418d1c0db87b773f5467b16b395d96.tar.bz2
mpv-39bb720ef8418d1c0db87b773f5467b16b395d96.tar.xz
Add a 64 bit integer type to the suboption parser.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28794 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 a54aac540f..e12c91bed8 100644
--- a/m_option.h
+++ b/m_option.h
@@ -25,6 +25,7 @@ struct m_struct_st;
// Simple types
extern const m_option_type_t m_option_type_flag;
extern const m_option_type_t m_option_type_int;
+extern const m_option_type_t m_option_type_int64;
extern const m_option_type_t m_option_type_float;
extern const m_option_type_t m_option_type_double;
extern const m_option_type_t m_option_type_string;
@@ -152,6 +153,7 @@ extern const m_obj_params_t m_span_params_def;
// FIXME: backward compatibility
#define CONF_TYPE_FLAG (&m_option_type_flag)
#define CONF_TYPE_INT (&m_option_type_int)
+#define CONF_TYPE_INT64 (&m_option_type_int64)
#define CONF_TYPE_FLOAT (&m_option_type_float)
#define CONF_TYPE_DOUBLE (&m_option_type_double)
#define CONF_TYPE_STRING (&m_option_type_string)