⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reinitdlg.cpp

📁 本项目是一款内存动态分区分配模拟程序。用户通过本程序可以了解动态分区分配方式中使用的数据结构和分配算法
💻 CPP
字号:
// ReInitDlg.cpp : implementation file
//

#include "stdafx.h"
#include "EMSDSD.h"
#include "ReInitDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CReInitDlg dialog


CReInitDlg::CReInitDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CReInitDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CReInitDlg)
	m_lTotleEMSSpace = 640;
	//}}AFX_DATA_INIT
}


void CReInitDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CReInitDlg)
	DDX_Text(pDX, IDC_TOTLEEMSSPACE, m_lTotleEMSSpace);
	DDV_MinMaxLong(pDX, m_lTotleEMSSpace, 640, 4194304);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CReInitDlg, CDialog)
	//{{AFX_MSG_MAP(CReInitDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CReInitDlg message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -