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.

48 lines
842 B

  1. #ifndef __HARDWAREPAGE_H__
  2. #define __HARDWAREPAGE_H__
  3. #include "PropertyPage.h"
  4. /*++
  5. Microsoft Windows
  6. Copyright (C) Microsoft Corporation, 1981 - 1999
  7. Module Name:
  8. HardwarePage.h
  9. Abstract:
  10. Author:
  11. Rahul Thombre (RahulTh) 11/4/1998
  12. Revision History:
  13. 11/4/1998 RahulTh Created this module.
  14. --*/
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CHardwarePage dialog
  17. class HardwarePage : public PropertyPage
  18. {
  19. // Construction
  20. public:
  21. HardwarePage(HINSTANCE hInst, HWND parent) : PropertyPage(IDD_HARDWARE, hInst) { }
  22. ~HardwarePage() { }
  23. friend LONG CALLBACK CPlApplet(HWND hwndCPL, UINT uMsg, LPARAM lParam1, LPARAM lParam2);
  24. // Overrides
  25. protected:
  26. // Implementation
  27. protected:
  28. INT_PTR OnInitDialog(HWND hwndDlg);
  29. };
  30. #endif // !defined(__HARDWAREPAGE_H__)