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.

63 lines
1.3 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1996.
  5. //
  6. // File: once.hxx
  7. //
  8. // Contents: Task wizard once trigger property page.
  9. //
  10. // Classes: COncePage
  11. //
  12. // History: 4-28-1997 DavidMun Created
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __ONCE_HXX_
  16. #define __ONCE_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: COncePage
  20. //
  21. // Purpose: Implement the task wizard once trigger property page
  22. //
  23. // History: 4-28-1997 DavidMun Created
  24. //
  25. //---------------------------------------------------------------------------
  26. class COncePage: public CTriggerPage
  27. {
  28. public:
  29. COncePage::COncePage(
  30. CTaskWizard *pParent,
  31. LPTSTR ptszFolderPath,
  32. HPROPSHEETPAGE *phPSP);
  33. COncePage::~COncePage();
  34. //
  35. // CPropPage overrides
  36. //
  37. virtual LRESULT
  38. _OnInitDialog(
  39. LPARAM lParam);
  40. virtual LRESULT
  41. _OnPSNSetActive(
  42. LPARAM lParam);
  43. //
  44. // CTriggerPage overrides
  45. //
  46. virtual VOID
  47. FillInTrigger(
  48. TASK_TRIGGER *pTrigger);
  49. };
  50. #endif // __ONCE_HXX_