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 "FdmApp.h" 00008 #include "CFDM.h" 00009 #include "MainFrm.h" 00010 00011 STDMETHODIMP CFDM::Shutdown(BOOL bAskUser) 00012 { 00013 if (bAskUser) 00014 return E_NOTIMPL; 00015 00016 AfxGetApp ()->m_pMainWnd->PostMessage (WM_COMMAND, ID_APP_EXIT_2); 00017 00018 return S_OK; 00019 }
1.5.6