diff --git a/libupnp/upnp/src/win_dll.c b/libupnp/upnp/src/win_dll.c new file mode 100644 index 0000000..4adacaf --- /dev/null +++ b/libupnp/upnp/src/win_dll.c @@ -0,0 +1,17 @@ +// upnpLib.cpp : Defines the entry point for the DLL application. +// + +#ifdef WIN32 + +#include +BOOL APIENTRY DllMain( HANDLE hModule, + DWORD ul_reason_for_call, + LPVOID lpReserved + ) +{ + if (ul_reason_for_call == DLL_PROCESS_ATTACH) { + } + return TRUE; +} + +#endif