bsp
|
00001 #ifndef _ABOUT_H_ 00002 #define _ABOUT_H_ 00003 00004 // About Dialog Box 00005 // 00006 00007 class TAboutDlg : public WDialog 00008 { 00009 public: 00010 TAboutDlg(HWND parent); 00011 BOOL DialogProc(UINT msg, WPARAM wParam, LPARAM lParam); 00012 ~TAboutDlg(); 00013 00014 void EvPaint(); 00015 void SetupWindow(); 00016 00017 protected: 00018 WStatic *title, *thanks, *desc, *version, *build; 00019 }; 00020 00021 #endif //_ABOUT_H_