Leaked source code of windows server 2003

72 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module SwTstDlg.h | Header file for the Software Snapshot dialog
  6. @end
  7. Author:
  8. Adi Oltean [aoltean] 07/26/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 07/26/1999 Created
  12. aoltean 08/05/1999 Splitting wizard functionality in a base class
  13. --*/
  14. #if !defined(__VSS_SWTST_DLG_H__)
  15. #define __VSS_SWTST_DLG_H__
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSoftwareSnapshotTestDlg dialog
  21. class CSoftwareSnapshotTestDlg : public CVssTestGenericDlg
  22. {
  23. // Construction
  24. public:
  25. CSoftwareSnapshotTestDlg(
  26. CWnd* pParent = NULL);
  27. ~CSoftwareSnapshotTestDlg();
  28. // Dialog Data
  29. //{{AFX_DATA(CSoftwareSnapshotTestDlg)
  30. enum { IDD = IDD_SWTST };
  31. // CString m_strLogFileName;
  32. int m_nLogFileSize;
  33. BOOL m_bReadOnly;
  34. //}}AFX_DATA
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CSoftwareSnapshotTestDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CSoftwareSnapshotTestDlg)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnNext();
  45. afx_msg void OnAdd();
  46. afx_msg void OnDo();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(__VSS_SWTST_DLG_H__)