Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
653 B

  1. //
  2. // validatedlg.h: validation dialog
  3. //
  4. #ifndef _validatedlg_h_
  5. #define _validatedlg_h_
  6. #include "dlgbase.h"
  7. class CSH;
  8. class CValidateDlg : public CDlgBase
  9. {
  10. public:
  11. CValidateDlg(HWND hwndOwner, HINSTANCE hInst, HWND hwndMain, CSH* pSh);
  12. ~CValidateDlg();
  13. virtual DCINT DoModal();
  14. virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  15. static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  16. static CValidateDlg* _pValidateDlgInstance;
  17. private:
  18. HWND _hwndMain;
  19. CSH* _pSh;
  20. };
  21. #endif // _validatedlg_h_