MemoryDlg.h
上传用户:wzi6060
上传日期:2022-06-22
资源大小:130k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. // MemoryDlg.h : 头文件
  2. //
  3. #pragma once
  4. #include "afxcmn.h"
  5. // CMemoryDlg 对话框
  6. class CMemoryDlg : public CDialog
  7. {
  8. // 构造
  9. public:
  10. CMemoryDlg(CWnd* pParent = NULL); // 标准构造函数
  11. // 对话框数据
  12. enum { IDD = IDD_MEMORY_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  15. // 实现
  16. protected:
  17. HICON m_hIcon;
  18. // 生成的消息映射函数
  19. virtual BOOL OnInitDialog();
  20. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  21. afx_msg void OnPaint();
  22. afx_msg HCURSOR OnQueryDragIcon();
  23. DECLARE_MESSAGE_MAP()
  24. private:
  25. struct Memory_pariton{
  26. int  MemorySize;
  27. bool Is_Load;
  28. }partionarray[10];
  29. struct Task_Array{
  30. int tasksize;
  31. int taskruntime;
  32. CString Loadtime;
  33. int taskrunningtime;
  34. int taskstayno;
  35. int taskstatus;
  36. }Taskarray[100];
  37. CListCtrl m_bListCtrl;
  38. CListCtrl m_listctrl;
  39. public:
  40. afx_msg void OnBnClickedBtnStart();
  41. afx_msg void OnTimer(UINT_PTR nIDEvent);
  42. };