QuakeGod
2023-09-05 df03213660361b1c771f0a3f21b6ddaeaef7763a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include <afxdialogex.h>
class CMyPropPage :
    public CDialogEx
{
public:
    CMyPropPage() :CDialogEx() {};
    CMyPropPage(UINT nTemplate, CWnd * pWnd = (CWnd *)0) :CDialogEx(nTemplate, pWnd) {};
    virtual ~CMyPropPage() {};
    virtual int SetData() { return 0; };
    virtual int GetData() { return 0; };
    void * DataPtr = nullptr;
};