dpnhpast: Remove an unnecessary DllMain entry point.

This commit is contained in:
Alexandre Julliard 2013-02-14 21:36:39 +01:00
parent a4cdc0e90d
commit 79e1723e72

View file

@ -27,29 +27,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
/******************************************************************
* DllMain
*
*
*/
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("(%p, %d, %p)\n",hinstDLL,fdwReason,lpvReserved);
if (fdwReason == DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hinstDLL);
/* FIXME: Initialisation */
}
else if (fdwReason == DLL_PROCESS_DETACH)
{
/* FIXME: Cleanup */
}
return TRUE;
}
/******************************************************************
* DirectPlayNATHelpCreate (DPNHPAST.1)
*