QuakeGod
2023-10-20 6fa60de2b0d0237054aa7571191df0f291838031
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
#include "CMyPropPage.h"
 
// CPropOutputCfg 对话框
 
class CPropOutputCfg : public CMyPropPage
{
    DECLARE_DYNAMIC(CPropOutputCfg)
 
public:
    CPropOutputCfg(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CPropOutputCfg();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_PROP_OUTPUT_SET };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
};