CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ext/miniupnp-build/miniupnpcstrings.h
Views: 1401
1
/* $Id: miniupnpcstrings.h.in,v 1.6 2014/11/04 22:31:55 nanard Exp $ */
2
/* Project: miniupnp
3
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
4
* Author: Thomas Bernard
5
* Copyright (c) 2005-2014 Thomas Bernard
6
* This software is subjects to the conditions detailed
7
* in the LICENCE file provided within this distribution */
8
#ifndef MINIUPNPCSTRINGS_H_INCLUDED
9
#define MINIUPNPCSTRINGS_H_INCLUDED
10
11
#define OS_STRING "Android"
12
#define MINIUPNPC_VERSION_STRING "2.1"
13
14
#if 0
15
/* according to "UPnP Device Architecture 1.0" */
16
#define UPNP_VERSION_STRING "UPnP/1.0"
17
#else
18
/* according to "UPnP Device Architecture 1.1" */
19
#define UPNP_VERSION_STRING "UPnP/1.1"
20
#endif
21
22
#endif
23
24
25