Add minimum and maximum values for integer parameters

The defined integer values can be used to give a default value the maximum
for its type.
This commit is contained in:
Markus Mäkelä
2017-01-08 14:03:40 +02:00
parent 11ab4575c3
commit f156b1e4ee

View File

@ -79,6 +79,12 @@ enum mxs_module_param_type
MXS_MODULE_PARAM_SERVICE, /**< Service name */ MXS_MODULE_PARAM_SERVICE, /**< Service name */
}; };
/** Maximum and minimum values for integer types */
#define MXS_MODULE_PARAM_COUNT_MAX "2147483647"
#define MXS_MODULE_PARAM_COUNT_MIN "0"
#define MXS_MODULE_PARAM_INT_MAX "2147483647"
#define MXS_MODULE_PARAM_INT_MIN "-2147483647"
/** Parameter options /** Parameter options
* *
* If no type is specified, the option can be used with all parameter types * If no type is specified, the option can be used with all parameter types