SRB2/libs/miniupnpc/include/upnperrors.h

27 lines
624 B
C
Raw Normal View History

2023-12-30 16:35:35 +00:00
/* $Id: upnperrors.h,v 1.6 2015/07/21 13:16:55 nanard Exp $ */
/* (c) 2007-2015 Thomas Bernard
2014-03-15 16:59:03 +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. */
2023-12-30 16:35:35 +00:00
#ifndef UPNPERRORS_H_INCLUDED
#define UPNPERRORS_H_INCLUDED
2014-03-15 16:59:03 +00:00
2023-12-30 16:35:35 +00:00
#include "miniupnpc_declspec.h"
2014-03-15 16:59:03 +00:00
#ifdef __cplusplus
extern "C" {
#endif
/* strupnperror()
2023-12-30 16:35:35 +00:00
* Return a string description of the UPnP error code
2014-03-15 16:59:03 +00:00
* or NULL for undefinded errors */
2023-12-30 16:35:35 +00:00
MINIUPNP_LIBSPEC const char * strupnperror(int err);
2014-03-15 16:59:03 +00:00
#ifdef __cplusplus
}
#endif
#endif