AP_MODULE_MAGIC_AT_LEAST(intmajor, int minor);
- Determine if the server's current MODULE_MAGIC_NUMBER is at least a specified value.
Useful for testing for features. For example, suppose you wish to use the apr_table_overlap function. You can do this:#if AP_MODULE_MAGIC_AT_LEAST(19980812,2) ... use apr_table_overlap() #else ... alternative code which doesn't use apr_table_overlap() #endif
- Parameters
major The major module magic number minor The minor module magic number