You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
440 B
C
26 lines
440 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
|
||
|
|
// CPDlg dialog
|
||
|
|
|
||
|
|
class /*AFX_EXT_CLASS*/ CPDlg : public CDialog
|
||
|
|
{
|
||
|
|
DECLARE_DYNAMIC(CPDlg)
|
||
|
|
|
||
|
|
public:
|
||
|
|
CPDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
|
virtual ~CPDlg();
|
||
|
|
|
||
|
|
// Dialog Data
|
||
|
|
enum { IDD = IDD_DIALOG_INFO };
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
public:
|
||
|
|
virtual BOOL Create();
|
||
|
|
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
||
|
|
|
||
|
|
};
|