blob: e7a008804c59b6bbf86dc014cf95e2c5535923d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef T2DLL_T2DLGITEMCANCEL_H
#define T2DLL_T2DLGITEMCANCEL_H
#include "../common.h"
#include "T2DlgItemIButton.h"
class AFX_CLASS_EXPORT T2DlgItemCANCEL : public T2DlgItemIButton {
public:
T2DlgItemCANCEL(T2TowerDoc* inDoc, T2ImageObj* inImageObj, CPalette* inPalette);
virtual BOOL Create(const char* windowName, DWORD style, const RECT& inRect, CWnd* parentWnd, UINT nId);
};
#endif
|