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

#ifndef __WIZARD_H
#include "wizard.h"
#endif
#define __CAPPHELPWIZARD_H
class CAppHelpWizard: public CShimWizard{
public:
UINT nPresentHelpId;
BOOL bBlock;
CSTRING strMessageSummary;
CSTRING strURL;
BOOL BeginWizard(HWND hParent);
CAppHelpWizard()
{
nPresentHelpId = -1;
bBlock = FALSE;
}
};
extern BOOL CALLBACK SelectFiles (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK GetAppInfo (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK GetMessageType (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK GetMessageInformation (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK AppWizardDone (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);