summaryrefslogtreecommitdiffstats
path: root/core/m_option.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/m_option.h')
-rw-r--r--core/m_option.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/m_option.h b/core/m_option.h
index d06e189449..ef2df4e12c 100644
--- a/core/m_option.h
+++ b/core/m_option.h
@@ -544,6 +544,9 @@ static inline void m_option_free(const m_option_t *opt, void *dst)
#define OPT_INT(...) \
OPT_GENERAL(int, __VA_ARGS__, .type = &m_option_type_int)
+#define OPT_INT64(...) \
+ OPT_GENERAL(int64_t, __VA_ARGS__, .type = &m_option_type_int64)
+
#define OPT_RANGE_(ctype, optname, varname, flags, minval, maxval, ...) \
OPT_GENERAL(ctype, optname, varname, (flags) | CONF_RANGE, \
.min = minval, .max = maxval, __VA_ARGS__)