xmlwrapp
|
This file contains the XMLWRAPP_CHECK_VERSION macro.
Go to the source code of this file.
Defines | |
#define | XMLWRAPP_CHECK_VERSION(major, minor, micro) |
Checks if xmlwrapp version is at least major. |
This file contains the XMLWRAPP_CHECK_VERSION macro.
#define XMLWRAPP_CHECK_VERSION | ( | major, | |
minor, | |||
micro | |||
) |
( \ XMLWRAPP_VERSION_MAJOR > (major) \ || \ (XMLWRAPP_VERSION_MAJOR == (major) && \ XMLWRAPP_VERSION_MINOR >= (minor)) \ || \ (XMLWRAPP_VERSION_MAJOR == (major) && \ (XMLWRAPP_VERSION_MINOR == (minor) && \ XMLWRAPP_VERSION_MICRO >= (micro)) \ )
Checks if xmlwrapp version is at least major.
minor.micro.