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.
|
|
//
// aboutdlg.h: about dialog class
//
#ifndef _aboutdlg_h_
#define _aboutdlg_h_
#include "dlgbase.h"
#include "sh.h"
class CAboutDlg : public CDlgBase { public: CAboutDlg(HWND hwndOwner, HINSTANCE hInst, DCINT cipherStrength, PDCTCHAR szControlVer); ~CAboutDlg();
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 CAboutDlg* _pAboutDlgInstance; private: DCINT _cipherStrength; DCTCHAR _szControlVer[SH_DISPLAY_STRING_MAX_LENGTH]; };
#endif //_aboutdlg_h_
|