summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-31 05:13:29 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-31 16:03:11 +0200
commitf923fd720cd978bb123a743ac2d38096b1e45726 (patch)
treeb8b221d89b4d172d8fe79393fae2d2f43c50c405 /m_option.h
parent626d5ed6285309da621a5665ad9eb03c227ce71d (diff)
downloadmpv-f923fd720cd978bb123a743ac2d38096b1e45726.tar.bz2
mpv-f923fd720cd978bb123a743ac2d38096b1e45726.tar.xz
options: remove unused "func_full" option type
vo_zr was the last user of the "func_full" option type. I think it's better if future features are implemented using more straightforward option functionality. Delete the func_full implementation.
Diffstat (limited to 'm_option.h')
-rw-r--r--m_option.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/m_option.h b/m_option.h
index 05d5751ceb..ca70011393 100644
--- a/m_option.h
+++ b/m_option.h
@@ -63,7 +63,6 @@ extern const m_option_type_t m_option_type_imgfmt;
extern const m_option_type_t m_option_type_afmt;
// Func-based types
-extern const m_option_type_t m_option_type_func_full;
extern const m_option_type_t m_option_type_func_param;
extern const m_option_type_t m_option_type_func;
@@ -188,7 +187,6 @@ struct m_opt_choice_alternatives {
#define CONF_TYPE_PRINT (&m_option_type_print)
#define CONF_TYPE_PRINT_INDIRECT (&m_option_type_print_indirect)
#define CONF_TYPE_PRINT_FUNC (&m_option_type_print_func)
-#define CONF_TYPE_FUNC_FULL (&m_option_type_func_full)
#define CONF_TYPE_SUBCONFIG (&m_option_type_subconfig)
#define CONF_TYPE_STRING_LIST (&m_option_type_string_list)
#define CONF_TYPE_POSITION (&m_option_type_position)