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 #include "vmsFdmAppMgr.h" 00008 #include "FdmApp.h" 00009 00010 vmsFdmAppMgr::vmsFdmAppMgr() 00011 { 00012 00013 } 00014 00015 vmsFdmAppMgr::~vmsFdmAppMgr() 00016 { 00017 00018 } 00019 00020 BOOL vmsFdmAppMgr::IsBtInstalled() 00021 { 00022 return GetFileAttributes (((CFdmApp*)AfxGetApp ())->m_strAppPath + "fdmbtsupp.dll") != DWORD (-1); 00023 } 00024 00025 BOOL vmsFdmAppMgr::IsMediaFeaturesInstalled() 00026 { 00027 return GetFileAttributes (((CFdmApp*)AfxGetApp ())->m_strAppPath + "mediaconverter.dll") != DWORD (-1); 00028 } 00029 00030 void vmsFdmAppMgr::ShowInstallMediaFeaturesMessage() 00031 { 00032 MessageBox (NULL, LS (L_INST_MEDIA_FEATURES), "Free Download Manager", 0); 00033 } 00034 00035 void vmsFdmAppMgr::ShowInstallBtMessage() 00036 { 00037 MessageBox (NULL, LS (L_INST_BT_SUPPORT), "Free Download Manager", 0); 00038 }
1.5.6