2011-09-28 19:13:20 +00:00
|
|
|
/* $Id: upnpsoap.h,v 1.8 2007/02/07 22:16:19 nanard Exp $ */
|
|
|
|
/* MiniUPnP project
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
2012-03-01 01:44:38 +00:00
|
|
|
* (c) 2006 Thomas Bernard
|
2011-09-28 19:13:20 +00:00
|
|
|
* This software is subject to the conditions detailed
|
|
|
|
* in the LICENCE file provided within the distribution */
|
|
|
|
|
2012-09-20 20:52:51 +00:00
|
|
|
#ifndef UPNPSOAP_H_INCLUDED
|
|
|
|
#define UPNPSOAP_H_INCLUDED
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
/* ExecuteSoapAction():
|
|
|
|
* this method executes the requested Soap Action */
|
|
|
|
void
|
|
|
|
ExecuteSoapAction(struct upnphttp *, const char *, int);
|
|
|
|
|
|
|
|
/* SoapError():
|
2012-03-01 01:44:38 +00:00
|
|
|
* sends a correct SOAP error with an UPNPError code and
|
2011-09-28 19:13:20 +00:00
|
|
|
* description */
|
|
|
|
void
|
|
|
|
SoapError(struct upnphttp * h, int errCode, const char * errDesc);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|