Detlef Riekenberg wrote:
+/*****************************************************
- DllMain
- */
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +{
- TRACE("(%p, %ld, %p)\n",hinstDLL, fdwReason, lpvReserved);
- /* For the moment, do nothing here. */
- return TRUE;
+}
You should call DisableThreadLibraryCalls here for performance reasons.