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.

42 lines
842 B

  1. #ifndef __WIZARD_H
  2. #include "wizard.h"
  3. #endif
  4. #define __CAPPHELPWIZARD_H
  5. class CAppHelpWizard: public CShimWizard{
  6. public:
  7. UINT nPresentHelpId;
  8. BOOL bBlock;
  9. CSTRING strMessageSummary;
  10. CSTRING strURL;
  11. BOOL BeginWizard(HWND hParent);
  12. CAppHelpWizard()
  13. {
  14. nPresentHelpId = -1;
  15. bBlock = FALSE;
  16. }
  17. };
  18. extern BOOL CALLBACK SelectFiles (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  19. BOOL CALLBACK GetAppInfo (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  20. BOOL CALLBACK GetMessageType (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  21. BOOL CALLBACK GetMessageInformation (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  22. BOOL CALLBACK AppWizardDone (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);