files required for Windows variant only

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@20 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Oxy 2006-06-13 12:34:04 +00:00
parent bc2941c2a7
commit 26bde09028

View File

@ -0,0 +1,17 @@
// upnpLib.cpp : Defines the entry point for the DLL application.
//
#ifdef WIN32
#include <windows.h>
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
if (ul_reason_for_call == DLL_PROCESS_ATTACH) {
}
return TRUE;
}
#endif