Update-Installer/external/win32cpp/WCE samples/Dialog/MyDialog.h
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

23 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