blob: 70f7588cc6dac3a7e9a28ac93988d257939d7ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MINIUPNPCSTRINGS_H_INCLUDED
#define MINIUPNPCSTRINGS_H_INCLUDED
#if defined(_WIN32)
#define OS_STRING "Windows"
#elif defined(__linux__)
#define OS_STRING "Linux"
#elif defined(__OSX__)
#define OS_STRING "Mac OS X"
#elif defined(__APPLE__)
#define OS_STRING "Mac OS X"
#elif defined(__DARWIN__)
#define OS_STRING "Darwin"
#else
#define OS_STRING "Generic"
#endif
#define MINIUPNPC_VERSION_STRING "1.9"
#define UPNP_VERSION_STRING "UPnP/1.1"
#endif
|