diff m_option.h @ 28759:af274aef6b81

Add a 64 bit integer type to the suboption parser.
author reimar
date Mon, 02 Mar 2009 11:17:50 +0000
parents 7a36d5941fd8
children 0f1b5b68af32
line wrap: on
line diff
--- a/m_option.h	Mon Mar 02 11:10:11 2009 +0000
+++ b/m_option.h	Mon Mar 02 11:17:50 2009 +0000
@@ -25,6 +25,7 @@
 // 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 @@
 // 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)