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.

75 lines
856 B

  1. /*
  2. * Copyright (c) 1998 Microsoft Corporation
  3. *
  4. * Module Name:
  5. *
  6. * pages.h
  7. *
  8. * Abstract:
  9. *
  10. * This file defines the License Server Setup Wizard Page class.
  11. *
  12. * Author:
  13. *
  14. * Breen Hagan (BreenH) Oct-02-98
  15. *
  16. * Environment:
  17. *
  18. * User Mode
  19. */
  20. #ifndef __LSOC_PAGES_H__
  21. #define __LSOC_PAGES_H__
  22. #include "ocpage.h"
  23. class EnablePage : public OCPage
  24. {
  25. private:
  26. BOOL
  27. CanShow(
  28. );
  29. BOOL
  30. OnInitDialog(
  31. HWND hwndDlg,
  32. WPARAM wParam,
  33. LPARAM lParam
  34. );
  35. BOOL
  36. OnCommand(
  37. HWND hWndDlg,
  38. WPARAM wParam,
  39. LPARAM lParam
  40. );
  41. BOOL
  42. ApplyChanges(
  43. );
  44. UINT
  45. GetPageID(
  46. )
  47. {
  48. return(IDD_PROPPAGE_LICENSESERVICES);
  49. }
  50. UINT
  51. GetHeaderTitleResource(
  52. )
  53. {
  54. return(IDS_MAIN_TITLE);
  55. }
  56. UINT
  57. GetHeaderSubTitleResource(
  58. )
  59. {
  60. return(IDS_SUB_TITLE);
  61. }
  62. };
  63. #endif // __LSOC_PAGES_H__