tagging release
[dasher.git] / Src / Win32 / Widgets / AboutBox.h
blob4d00ca6182b7eab7e3a8f6e01fa4ff5d355c4ae0
1 // AboutBox.h
2 //
3 /////////////////////////////////////////////////////////////////////////////
4 //
5 // Copyright (c) 2005 David Ward
6 //
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef __AboutBox_h__
10 #define __AboutBox_h__
11 #include "../resource.h"
13 /////////////////////////////////////////////////////////////////////////////
15 class CAboutBox : public CDialogImpl<CAboutBox>
17 public:
19 CAboutBox() {}
21 enum { IDD = IDD_ABOUTBOX };
23 BEGIN_MSG_MAP(CAboutDlg)
24 COMMAND_ID_HANDLER(IDOK, OnClose)
25 END_MSG_MAP()
28 private:
29 LRESULT OnClose(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
31 EndDialog(wID);
32 return 0;
37 #endif /* #ifndef __AboutBox_h__ */