pgtmeout.h
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:

Windows Kernel

Development Platform:

Visual C++

  1. #ifndef _INC_PGTMEOUT_H
  2. #define _INC_PGTMEOUT_H
  3. #include "pgbase.h"
  4. class CAccessTimeOutPg : public WizardPage
  5. {
  6. public:
  7. CAccessTimeOutPg(LPPROPSHEETPAGE ppsp, int dwPageId);
  8. ~CAccessTimeOutPg(VOID);
  9. protected:
  10. void UpdateControls();
  11. LRESULT OnInitDialog(HWND hwnd, WPARAM wParam, LPARAM lParam);
  12. LRESULT OnCommand(HWND hwnd, WPARAM wParam, LPARAM lParam);
  13. LRESULT OnPSN_WizNext(HWND hwnd, INT idCtl, LPPSHNOTIFY pnmh);
  14. };
  15. class CAccessTimeOutPg1 : public CAccessTimeOutPg
  16. {
  17. public:
  18. CAccessTimeOutPg1(LPPROPSHEETPAGE ppsp) : CAccessTimeOutPg(ppsp, IDD_WIZACCESSTIMEOUT1) {};
  19. };
  20. class CAccessTimeOutPg2 : public CAccessTimeOutPg
  21. {
  22. public:
  23. CAccessTimeOutPg2(LPPROPSHEETPAGE ppsp) : CAccessTimeOutPg(ppsp, IDD_WIZACCESSTIMEOUT2) {};
  24. };
  25. #endif // _INC_PGTMEOUT_H