00001 // libilliCore.cpp : Defines the entry point for the DLL application. 00002 // 00003 00004 #include "stdafx.h" 00005 00006 //These ignore unreferenced formal parameter (lpReserved and hModule since they are unused) 00007 BOOL APIENTRY DllMain( HANDLE, 00008 DWORD ul_reason_for_call, 00009 LPVOID 00010 ) 00011 { 00012 switch (ul_reason_for_call) 00013 { 00014 case DLL_PROCESS_ATTACH: 00015 case DLL_THREAD_ATTACH: 00016 case DLL_THREAD_DETACH: 00017 case DLL_PROCESS_DETACH: 00018 break; 00019 } 00020 return TRUE; 00021 }