DialogSettings.cpp
上传用户:wandash
上传日期:2007-01-07
资源大小:79k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Visual C++

  1. // DialogSettings.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "FPDUMPW.h"
  5. #include "DialogSettings.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDialogSettings dialog
  13. CDialogSettings::CDialogSettings(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDialogSettings::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDialogSettings)
  17. m_HostAdapterID = 0;
  18. m_TargetID = 0;
  19. m_LUN = 0;
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDialogSettings::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDialogSettings)
  26. DDX_Text(pDX, IDC_EDIT1, m_HostAdapterID);
  27. DDX_Text(pDX, IDC_EDIT2, m_TargetID);
  28. DDX_Text(pDX, IDC_EDIT3, m_LUN);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CDialogSettings, CDialog)
  32. //{{AFX_MSG_MAP(CDialogSettings)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CDialogSettings message handlers
  37. BOOL CDialogSettings::OnInitDialog() 
  38. {
  39. CDialog::OnInitDialog();
  40. // TODO: Add extra initialization here
  41. return TRUE;  // return TRUE unless you set the focus to a control
  42.               // EXCEPTION: OCX Property Pages should return FALSE
  43. }