00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 Open Download Manager Copyright (c) 2008-2010 OpenDownloadManager.ORG 00004 */ 00005 00006 #include "stdafx.h" 00007 00008 void InitializeFdmBtSuppDll () 00009 { 00010 boost::filesystem::path::default_name_check (boost::filesystem::no_check); 00011 } 00012 00013 BOOL APIENTRY DllMain( HANDLE hModule, 00014 DWORD ul_reason_for_call, 00015 LPVOID lpReserved 00016 ) 00017 { 00018 if (ul_reason_for_call == DLL_PROCESS_ATTACH) 00019 InitializeFdmBtSuppDll (); 00020 00021 return TRUE; 00022 } 00023
1.5.6