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.

29 lines
620 B

  1. //
  2. // shutdowndlg.h: shutdown dialog
  3. //
  4. #ifndef _shutdowndlg_h_
  5. #define _shutdowndlg_h_
  6. #include "dlgbase.h"
  7. class CSH;
  8. class CShutdownDlg : public CDlgBase
  9. {
  10. public:
  11. CShutdownDlg(HWND hwndOwner, HINSTANCE hInst, CSH* pSh);
  12. ~CShutdownDlg();
  13. virtual DCINT DoModal();
  14. virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  15. static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  16. static CShutdownDlg* _pShutdownDlgInstance;
  17. private:
  18. CSH* _pSh;
  19. };
  20. #endif //_shutdowndlg_h_