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.

44 lines
788 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 2000
  4. *
  5. * TITLE: Nameit.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: KeisukeT
  10. *
  11. * DATE: 27 Mar, 2000
  12. *
  13. * DESCRIPTION:
  14. * Header file for a page to name a device.
  15. *
  16. *******************************************************************************/
  17. #ifndef _NAMEIT_H_
  18. #define _NAMEIT_H_
  19. //
  20. // Include
  21. //
  22. #include "wizpage.h"
  23. #include "device.h"
  24. //
  25. // Class
  26. //
  27. class CNameDevicePage : public CInstallWizardPage {
  28. PINSTALLER_CONTEXT m_pInstallerContext; // Installer context.
  29. public:
  30. CNameDevicePage(PINSTALLER_CONTEXT pInstallerContext);
  31. ~CNameDevicePage();
  32. virtual BOOL OnNotify(LPNMHDR lpnmh);
  33. };
  34. #endif // _NAMEIT_H_