| upnpconfig.h | | upnpconfig.h | |
| | | | |
| skipping to change at line 42 | | skipping to change at line 42 | |
| /////////////////////////////////////////////////////////////////////////// | | /////////////////////////////////////////////////////////////////////////// | |
| | | | |
| #ifndef UPNP_CONFIG_H | | #ifndef UPNP_CONFIG_H | |
| #define UPNP_CONFIG_H | | #define UPNP_CONFIG_H | |
| | | | |
| /**************************************************************************
* | | /**************************************************************************
* | |
| * Library version | | * Library version | |
| **************************************************************************
*/ | | **************************************************************************
*/ | |
| | | | |
| /** The library version (string) e.g. "1.3.0" */ | | /** The library version (string) e.g. "1.3.0" */ | |
|
| #define UPNP_VERSION_STRING "1.3.0" | | #define UPNP_VERSION_STRING "1.3.1" | |
| | | | |
| /** Major version of the library */ | | /** Major version of the library */ | |
| #define UPNP_VERSION_MAJOR 1 | | #define UPNP_VERSION_MAJOR 1 | |
| | | | |
| /** Minor version of the library */ | | /** Minor version of the library */ | |
| #define UPNP_VERSION_MINOR 3 | | #define UPNP_VERSION_MINOR 3 | |
| | | | |
|
| /** The library version (numeric) e.g. 103 means version 1.3.x */ | | /** Patch version of the library */ | |
| #define UPNP_VERSION (UPNP_VERSION_MAJOR * 100 + UPNP_VERSION_MINOR) | | #define UPNP_VERSION_PATCH 1 | |
| | | | |
| | | /** The library version (numeric) e.g. 10300 means version 1.3.0 */ | |
| | | #define UPNP_VERSION \ | |
| | | ((UPNP_VERSION_MAJOR*100 + UPNP_VERSION_MINOR)*100 + UPNP_VERSION_PATCH) | |
| | | | |
| /**************************************************************************
* | | /**************************************************************************
* | |
| * Library optional features | | * Library optional features | |
| **************************************************************************
*/ | | **************************************************************************
*/ | |
| | | | |
| /* | | /* | |
| * The following defines can be tested in order to know which | | * The following defines can be tested in order to know which | |
| * optional features have been included in the installed library. | | * optional features have been included in the installed library. | |
| */ | | */ | |
| | | | |
| | | | |
End of changes. 2 change blocks. |
| 3 lines changed or deleted | | 7 lines changed or added | |
|