Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// RateDlg.cpp : implementation file
//
#include "stdafx.h"
#include "t3test.h"
#include "rate.h"
#ifdef _DEBUG
#ifndef _WIN64 // mfc 4.2's heap debugging features generate warnings on win64
#define new DEBUG_NEW
#endif
#undef THIS_FILE
static char THIS_FILE[] = __FILE__; #endif
/////////////////////////////////////////////////////////////////////////////
// CRateDlg dialog
CRateDlg::CRateDlg(CWnd* pParent /*=NULL*/) : CDialog(CRateDlg::IDD, pParent) { //{{AFX_DATA_INIT(CRateDlg)
m_dwMinRate = 0; m_dwMaxRate = 0;
//}}AFX_DATA_INIT
}
void CRateDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CRateDlg)
DDX_Text(pDX, IDC_MINRATE, m_dwMinRate); DDX_Text(pDX, IDC_MAXRATE, m_dwMaxRate); //}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CRateDlg, CDialog) //{{AFX_MSG_MAP(CRateDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CRateDlg message handlers
|