2014-10-02 16:43:13 +00:00
|
|
|
/* $Id: upnperrors.h,v 1.2 2008/07/02 23:31:15 nanard Exp $ */
|
2015-12-30 07:56:25 +00:00
|
|
|
/* (c) 2007-2015 Thomas Bernard
|
2014-04-09 12:14:35 +00:00
|
|
|
* All rights reserved.
|
|
|
|
* MiniUPnP Project.
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
|
|
* This software is subjet to the conditions detailed in the
|
|
|
|
* provided LICENCE file. */
|
|
|
|
#ifndef UPNPERRORS_H_INCLUDED
|
|
|
|
#define UPNPERRORS_H_INCLUDED
|
|
|
|
|
2015-12-30 07:56:25 +00:00
|
|
|
#include "miniupnpc_declspec.h"
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* strupnperror()
|
|
|
|
* Return a string description of the UPnP error code
|
|
|
|
* or NULL for undefinded errors */
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC const char * strupnperror(int err);
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|