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.
|
|
//
// cachewrndlg.h: cachewrn dialog class
// Bitmap Cache Warning dialog
//
#ifndef _cachewrndlg_h_
#define _cachewrndlg_h_
#include "dlgbase.h"
#include "sh.h"
class CCacheWrnDlg : public CDlgBase { public: CCacheWrnDlg(HWND hwndOwner, HINSTANCE hInst); ~CCacheWrnDlg();
virtual DCINT DoModal(); virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam); static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
static CCacheWrnDlg* _pCacheWrnDlgInstance;
private: HICON _hWarningIcon; RECT _warningIconRect; }; #endif //_cachewrndlg_h_
|