12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef UPNPDEV_H_INCLUDED
- #define UPNPDEV_H_INCLUDED
- #include "miniupnpc_declspec.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct UPNPDev {
- struct UPNPDev * pNext;
- char * descURL;
- char * st;
- char * usn;
- unsigned int scope_id;
- char buffer[3];
- };
- MINIUPNP_LIBSPEC void freeUPNPDevlist(struct UPNPDev * devlist);
- #ifdef __cplusplus
- }
- #endif
- #endif
|