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.

48 lines
771 B

  1. //Copyright (c) 1997-2000 Microsoft Corporation
  2. #include "pch.hxx" // pch
  3. #pragma hdrstop
  4. #include "resource.h"
  5. #include "pgnWelcome.h"
  6. #include "select.h"
  7. CWizWelcomePg::CWizWelcomePg(
  8. LPPROPSHEETPAGE ppsp
  9. ) : WizardPage(ppsp, 0, 0)
  10. {
  11. m_dwPageId = IDD_WIZNEWWELCOME;
  12. ppsp->pszTemplate = MAKEINTRESOURCE(m_dwPageId);
  13. }
  14. CWizWelcomePg::~CWizWelcomePg(
  15. VOID
  16. )
  17. {
  18. }
  19. LRESULT
  20. CWizWelcomePg::OnCommand(
  21. HWND hwnd,
  22. WPARAM wParam,
  23. LPARAM lParam
  24. )
  25. {
  26. LRESULT lResult = 1;
  27. return lResult;
  28. }
  29. LRESULT
  30. CWizWelcomePg::OnPSN_WizNext(
  31. HWND hwnd,
  32. INT idCtl,
  33. LPPSHNOTIFY pnmh
  34. )
  35. {
  36. return WizardPage::OnPSN_WizNext(hwnd, idCtl, pnmh);
  37. }