ServerDlg.cpp
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // ServerDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "WarDaemon.h"
  5. #include "ServerDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CServerDlg dialog
  13. CServerDlg::CServerDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CServerDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CServerDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CServerDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CServerDlg)
  24. DDX_Control(pDX, IDC_LOGWINDOW, m_LogWin);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CServerDlg, CDialog)
  28. //{{AFX_MSG_MAP(CServerDlg)
  29. //}}AFX_MSG_MAP
  30. ON_MESSAGE(WMU_MSG,GenericProcessMessage)
  31. ON_MESSAGE(WMU_TX_DNS, OnDNS)
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CServerDlg message handlers
  35. void CServerDlg::OnOK() 
  36. {
  37. PostMessage(WMU_MSG,PPT_SHUTDOWN,(LPARAM)TRUE);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CServerDlg message mapping to other modules
  41. // We call functions that ensure that the message
  42. // reach the correct module/thread
  43. LRESULT CServerDlg::GenericProcessMessage(WPARAM WParam, LPARAM LParam)
  44. {
  45. return CDaemonBase::GenericProcessMessage(WParam,LParam);
  46. }
  47. LRESULT CServerDlg::OnDNS(WPARAM WParam, LPARAM LParam)
  48. {
  49. CDNSLookup::DNSlookupCallback(WParam, LParam);
  50. return TRUE;
  51. }