资源简介
操作系统实验 页式存储器管理模拟程序设计 华工版 绝对好用。。。。。。。。。
代码片段和文件信息
// page.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “page.h“
#include “pageDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPageApp
BEGIN_MESSAGE_MAP(CPageApp CWinApp)
//{{AFX_MSG_MAP(CPageApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPageApp construction
CPageApp::CPageApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CPageApp object
CPageApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CPageApp initialization
BOOL CPageApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CPageDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 110650 2009-01-04 22:40 page\Debug\page.exe
文件 256120 2009-01-04 22:40 page\Debug\page.ilk
文件 12666 2008-12-06 22:15 page\Debug\page.obj
文件 361472 2009-01-04 22:40 page\Debug\page.pdb
文件 2984 2008-12-06 22:27 page\Debug\page.res
文件 40153 2009-01-04 22:40 page\Debug\pageDlg.obj
文件 105404 2008-12-06 22:15 page\Debug\StdAfx.obj
文件 214016 2009-01-05 03:10 page\Debug\vc60.idb
文件 372736 2009-01-04 22:40 page\Debug\vc60.pdb
文件 21176 2009-01-05 03:10 page\page.aps
文件 1344 2009-01-05 10:17 page\page.clw
文件 2035 2008-12-05 20:08 page\page.cpp
文件 4123 2008-12-05 20:08 page\page.dsp
文件 516 2008-12-05 21:12 page\page.dsw
文件 1302 2008-12-05 20:08 page\page.h
文件 74752 2009-01-05 10:17 page\page.ncb
文件 48640 2009-01-05 10:17 page\page.opt
文件 242 2009-01-05 03:10 page\page.plg
文件 5875 2008-12-06 22:27 page\page.rc
文件 10582 2009-01-04 22:39 page\pageDlg.cpp
文件 1395 2008-12-06 22:13 page\pageDlg.h
文件 3543 2008-12-05 20:08 page\ReadMe.txt
文件 1078 2008-12-05 20:08 page\res\page.ico
文件 396 2008-12-05 20:08 page\res\page.rc2
文件 866 2008-12-06 22:12 page\resource.h
文件 206 2008-12-05 20:08 page\StdAfx.cpp
文件 1054 2008-12-05 20:08 page\StdAfx.h
目录 0 2009-01-05 00:59 page\Debug
目录 0 2009-01-05 00:59 page\res
目录 0 2009-01-05 10:17 page
............此处省略3个文件信息
- 上一篇:iOS滑动选项卡类型的视图控制器
- 下一篇:GSM模块例程
相关资源
- 操作系统实验四 动态分区分配算法
- 操作系统实验五 虚拟内存页面置换算
- 操作系统实验二 时间片轮转RR进程调
- 操作系统实验报告进程通信
- 操作系统实验1_线程同步
- 东华大学 操作系统实验 读者写者问题
- 操作系统实验_多级反馈队列调度算法
- 操作系统实验六 设计一个按时间片轮
- 东北大学软件学院操作系统实验代码
- 操作系统实验四 进程的管道通信 实验
- 操作系统 文件操作的模拟实验报告报
- 操作系统 存储器管理模拟实验报告报
- 操作系统实验报告_生产者-消费者问题
- 北京邮电大学操作系统实验实验报告
- 操作系统实验1 加载用户程序的监控程
- 操作系统实验——进程的同步与互斥
- 操作系统实验报告 主存空间的分配与
- 华南理工大学操作系统实验六:实现
- 操作系统实验四主存空间的分配与回
- 哈工大 操作系统实验二 linux0.01添加系
- 操作系统实验报告_读者写者问题.do
- 计算机操作系统实验代码6个实验
- 计算机操作系统实验—银行家算法
- 操作系统实验三 预防进程死锁的银行
- 操作系统实验一 先来先服务FCFS和短
- 操作系统实验报告+源代码 基本分页存
- 操作系统实验4_文件系统
- 进程控制实验 操作系统实验一
- 操作系统实验1用信号量来实现读者
- 操作系统实验五、实现系统调用
评论
共有 条评论