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.

30 lines
690 B

  1. //
  2. // cachewrndlg.h: cachewrn dialog class
  3. // Bitmap Cache Warning dialog
  4. //
  5. #ifndef _cachewrndlg_h_
  6. #define _cachewrndlg_h_
  7. #include "dlgbase.h"
  8. #include "sh.h"
  9. class CCacheWrnDlg : public CDlgBase
  10. {
  11. public:
  12. CCacheWrnDlg(HWND hwndOwner, HINSTANCE hInst);
  13. ~CCacheWrnDlg();
  14. virtual DCINT DoModal();
  15. virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  16. static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  17. static CCacheWrnDlg* _pCacheWrnDlgInstance;
  18. private:
  19. HICON _hWarningIcon;
  20. RECT _warningIconRect;
  21. };
  22. #endif //_cachewrndlg_h_