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
710 B

  1. //
  2. // aboutdlg.h: about dialog class
  3. //
  4. #ifndef _aboutdlg_h_
  5. #define _aboutdlg_h_
  6. #include "dlgbase.h"
  7. #include "sh.h"
  8. class CAboutDlg : public CDlgBase
  9. {
  10. public:
  11. CAboutDlg(HWND hwndOwner, HINSTANCE hInst, DCINT cipherStrength, PDCTCHAR szControlVer);
  12. ~CAboutDlg();
  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 CAboutDlg* _pAboutDlgInstance;
  17. private:
  18. DCINT _cipherStrength;
  19. DCTCHAR _szControlVer[SH_DISPLAY_STRING_MAX_LENGTH];
  20. };
  21. #endif //_aboutdlg_h_