usp10: Remove an unnecessary DllMain entry point.

This commit is contained in:
Alexandre Julliard 2013-02-14 21:37:25 +01:00
parent a5c4f231ca
commit 6af3e91cf8
1 changed files with 0 additions and 17 deletions

View File

@ -998,23 +998,6 @@ int USP10_FindGlyphInLogClust(const WORD* pwLogClust, int cChars, WORD target)
return k;
}
/***********************************************************************
* DllMain
*
*/
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
{
switch(fdwReason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hInstDLL);
break;
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
/***********************************************************************
* ScriptFreeCache (USP10.@)
*