Source code of Windows XP (NT5)
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.

18 lines
318 B

  1. // Copyright 1996-1997 Microsoft Corporation. All Rights Reserved.
  2. #ifndef _HHCTRL_H_
  3. #include "hhctrl.h"
  4. #endif
  5. #ifndef _CDLG_H_
  6. #include "cdlg.h"
  7. #endif
  8. class CAboutBox : public CDlg
  9. {
  10. public:
  11. CAboutBox(CHtmlHelpControl* phhCtrl)
  12. : CDlg(phhCtrl, IDDLG_ABOUTBOX) { };
  13. BOOL OnBeginOrEnd(void);
  14. };