Turns out it wasn't hard to add miniupnpc to the VS2012 project and just have it build with the rest of the code.
This commit is contained in:
parent
dc8edea0c6
commit
0f5fb48a0b
35 changed files with 157 additions and 1633 deletions
|
@ -1,3 +1,4 @@
|
|||
#define _CRT_SECURE_NO_WARNINGS
|
||||
/* $Id: minisoap.c,v 1.24 2015/10/26 17:05:07 nanard Exp $ */
|
||||
/* Project : miniupnp
|
||||
* Author : Thomas Bernard
|
||||
|
@ -19,7 +20,13 @@
|
|||
#include <sys/socket.h>
|
||||
#endif
|
||||
#include "minisoap.h"
|
||||
#ifdef _WIN32
|
||||
#define OS_STRING "Win32"
|
||||
#define MINIUPNPC_VERSION_STRING "1.9"
|
||||
#define UPNP_VERSION_STRING "UPnP/1.1"
|
||||
#else
|
||||
#include "miniupnpcstrings.h"
|
||||
#endif
|
||||
|
||||
/* only for malloc */
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue