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.

76 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module DelDlg.h | Header file for the delete snapshots dialog
  6. @end
  7. Author:
  8. Adi Oltean [aoltean] 10/10/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 10/10/1999 Created
  12. --*/
  13. #if !defined(__VSS_TEST_DELETE_H__)
  14. #define __VSS_TEST_DELETE_H__
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CDeleteDlg dialog
  20. class CDeleteDlg : public CVssTestGenericDlg
  21. {
  22. // Construction
  23. public:
  24. CDeleteDlg(
  25. IVssCoordinator *pICoord,
  26. CWnd* pParent = NULL);
  27. ~CDeleteDlg();
  28. // Dialog Data
  29. //{{AFX_DATA(CDeleteDlg)
  30. enum { IDD = IDD_DELETE };
  31. CString m_strObjectId;
  32. BOOL m_bForceDelete;
  33. //}}AFX_DATA
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CDeleteDlg)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. protected:
  40. CComPtr<IVssCoordinator> m_pICoord;
  41. VSS_OBJECT_TYPE m_eSrcType;
  42. // Generated message map functions
  43. //{{AFX_MSG(CDeleteDlg)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnNext();
  46. afx_msg void OnSrcSnap();
  47. afx_msg void OnSrcSet();
  48. afx_msg void OnSrcProv();
  49. afx_msg void OnSrcVol();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(__VSS_TEST_DELETE_H__)