Source code of Windows XP (NT5)
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.

33 lines
841 B

  1. /*************************************************
  2. * about.h *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CAboutDlg dialog used for App About
  9. #ifndef _ABOUT_H_
  10. #define _ABOUT_H_
  11. class CAboutDlg : public CDialog
  12. {
  13. public:
  14. CAboutDlg();
  15. // Dialog Data
  16. //{{AFX_DATA(CAboutDlg)
  17. enum { IDD = IDD_ABOUTBOX };
  18. //}}AFX_DATA
  19. // Implementation
  20. protected:
  21. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  22. //{{AFX_MSG(CAboutDlg)
  23. // No message handlers
  24. //}}AFX_MSG
  25. DECLARE_MESSAGE_MAP()
  26. };
  27. #endif