mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-19 09:50:46 +00:00
24 lines
357 B
C
24 lines
357 B
C
|
#ifndef MYDIALOG_H
|
||
|
#define MYDIALOG_H
|
||
|
|
||
|
|
||
|
#include "dialog.h"
|
||
|
#include "resource.h"
|
||
|
|
||
|
|
||
|
class CMyDialog : public CDialog
|
||
|
{
|
||
|
public:
|
||
|
CMyDialog(UINT nResID, CWnd* pParent = NULL);
|
||
|
virtual ~CMyDialog();
|
||
|
|
||
|
|
||
|
protected:
|
||
|
virtual BOOL OnInitDialog();
|
||
|
virtual INT_PTR DialogProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||
|
virtual void OnOK();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif //MYDIALOG_H
|