QuakeGod
2023-09-05 df03213660361b1c771f0a3f21b6ddaeaef7763a
提交 | 用户 | age
418cb3 1 // PropMemCfg.cpp: 实现文件
Q 2 //
3
4 #include "pch.h"
5 #include "MTerm1.h"
6 #include "PropMemCfg.h"
7 #include "afxdialogex.h"
8
9
10 // CPropMemCfg 对话框
11
12 IMPLEMENT_DYNAMIC(CPropMemCfg, CMyPropPage)
13
14 CPropMemCfg::CPropMemCfg(CWnd* pParent /*=nullptr*/)
15     : CMyPropPage(IDD_PROP_MEM_CFG, pParent)
16 {
17
18 }
19
20 CPropMemCfg::~CPropMemCfg()
21 {
22 }
23
24 void CPropMemCfg::DoDataExchange(CDataExchange* pDX)
25 {
26     CDialogEx::DoDataExchange(pDX);
27 }
28
29
30 BEGIN_MESSAGE_MAP(CPropMemCfg, CDialogEx)
31 END_MESSAGE_MAP()
32
33
34 // CPropMemCfg 消息处理程序
35
36
37 int CPropMemCfg::ShowParam()
38 {
39     // TODO: 在此处添加实现代码.
40     return 0;
41 }