00001 //--------------------------------------------------------------------------------------------- 00002 // This file is a part of "DinoKod". 00003 // Copyright © 2003 Dino Productions. All Rights Reserved. 00004 // 00005 // File : CommonDll.cpp 00006 // Author : Sebastien LEIX sebastien.leix@wanadoo.fr 00007 // Date : 06/05/2002 00008 // Modification : 00009 // 00010 //--------------------------------------------------------------------------------------------- 00011 #include "Common/CommonDll.h" 00012 #include <windows.h> 00013 00014 #include "Common/Vertex.h" 00015 00016 //-------------------------------------------------------------------------------------------------------------------------------- 00017 BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) 00018 { 00019 switch( ul_reason_for_call ) 00020 { 00021 case DLL_PROCESS_ATTACH: 00022 case DLL_THREAD_ATTACH: 00023 case DLL_THREAD_DETACH: 00024 case DLL_PROCESS_DETACH: 00025 break; 00026 } 00027 return TRUE; 00028 }
1.5.1-p1