2012-10-09 19:00:31 -03:00
|
|
|
#ifndef MINIUPNPCSTRINGS_H_INCLUDED
|
|
|
|
#define MINIUPNPCSTRINGS_H_INCLUDED
|
2011-09-27 22:25:35 +02:00
|
|
|
|
|
|
|
#define OS_STRING "${CMAKE_SYSTEM_NAME}"
|
2024-02-03 12:10:26 +01:00
|
|
|
#define MINIUPNPC_VERSION_STRING "${PROJECT_VERSION}"
|
2011-09-27 22:25:35 +02:00
|
|
|
|
2014-11-05 06:34:51 +01:00
|
|
|
#if 0
|
|
|
|
/* according to "UPnP Device Architecture 1.0" */
|
2024-01-04 01:04:04 +01:00
|
|
|
#define UPNP_VERSION_MAJOR 1
|
|
|
|
#define UPNP_VERSION_MINOR 0
|
2014-11-05 06:34:51 +01:00
|
|
|
#define UPNP_VERSION_STRING "UPnP/1.0"
|
|
|
|
#else
|
|
|
|
/* according to "UPnP Device Architecture 1.1" */
|
2024-01-04 01:04:04 +01:00
|
|
|
#define UPNP_VERSION_MAJOR 1
|
|
|
|
#define UPNP_VERSION_MINOR 1
|
2014-11-05 06:34:51 +01:00
|
|
|
#define UPNP_VERSION_STRING "UPnP/1.1"
|
|
|
|
#endif
|
|
|
|
|
2011-09-27 22:25:35 +02:00
|
|
|
#endif
|