DialogSettings.cpp
资源名称:fpdumpw.zip [点击查看]
上传用户:wandash
上传日期:2007-01-07
资源大小:79k
文件大小:1k
源码类别:
SCSI/ASPI
开发平台:
Visual C++
- // DialogSettings.cpp : implementation file
- //
- #include "stdafx.h"
- #include "FPDUMPW.h"
- #include "DialogSettings.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDialogSettings dialog
- CDialogSettings::CDialogSettings(CWnd* pParent /*=NULL*/)
- : CDialog(CDialogSettings::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDialogSettings)
- m_HostAdapterID = 0;
- m_TargetID = 0;
- m_LUN = 0;
- //}}AFX_DATA_INIT
- }
- void CDialogSettings::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDialogSettings)
- DDX_Text(pDX, IDC_EDIT1, m_HostAdapterID);
- DDX_Text(pDX, IDC_EDIT2, m_TargetID);
- DDX_Text(pDX, IDC_EDIT3, m_LUN);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDialogSettings, CDialog)
- //{{AFX_MSG_MAP(CDialogSettings)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDialogSettings message handlers
- BOOL CDialogSettings::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }