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.

67 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. valwait.h
  5. Abstract:
  6. Implements Validate Wait Dialog class
  7. Author:
  8. Ran Kalach [rankala] 23-May-2000
  9. Revision History:
  10. --*/
  11. #ifndef _VALWAIT_
  12. #define _VALWAIT_
  13. #pragma once
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CValWaitDlg dialog
  16. class CUnmanageWizard;
  17. class CValWaitDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21. CValWaitDlg(CUnmanageWizard *pSheet, CWnd* pParent = NULL); // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CValWaitDlg)
  24. enum { IDD = IDD_VALIDATE_WAIT };
  25. CAnimateCtrl m_Animation;
  26. //}}AFX_DATA
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CValWaitDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. virtual void PostNcDestroy();
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. CUnmanageWizard *m_pSheet;
  37. // Generated message map functions
  38. //{{AFX_MSG(CValWaitDlg)
  39. virtual void OnCancel();
  40. virtual BOOL OnInitDialog();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. //}}AFX
  47. #endif // _VALWAIT_