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.

64 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module GenDlg.h | Header file for the generic dialog
  6. @end
  7. Author:
  8. Adi Oltean [aoltean] 08/05/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 08/05/1999 Created
  12. --*/
  13. #if !defined(__VSS_TEST_GENDLG_H__)
  14. #define __VSS_TEST_GENDLG_H__
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CVssTestGenericDlg dialog
  20. class CVssTestGenericDlg : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CVssTestGenericDlg(UINT nIDTemplate, CWnd* pParent = NULL); // standard constructor
  25. ~CVssTestGenericDlg();
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CVssTestGenericDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. protected:
  32. HICON m_hIcon;
  33. // Generated message map functions
  34. //{{AFX_MSG(CVssTestGenericDlg)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  37. afx_msg void OnPaint();
  38. afx_msg HCURSOR OnQueryDragIcon();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(__VSS_TEST_GENDLG_H__)