From 26bde09028ca82edcc7b448d72c1f229a0a05549 Mon Sep 17 00:00:00 2001 From: Oxy Date: Tue, 13 Jun 2006 12:34:04 +0000 Subject: [PATCH] files required for Windows variant only git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@20 119443c7-1b9e-41f8-b6fc-b9c35fce742c --- libupnp/upnp/src/win_dll.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 libupnp/upnp/src/win_dll.c 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