From: L.Allan on
I want to be able to use HtmlHelp for ContextSenstiveHelp using the vc6/vs98
IDE for release builds.

I started with a vc71 wizard built SDI app with the checkbox for HtmlHelp
selected. This generated:
EnableHtmlHelp();

which becomes:
SetHelpMode(afxHTMLHelp);

which becomes:
m_eHelpType = afxHTMLHelp;

which is equivalent to:
m_eHelpType = (AFX_HELP_TYPE) 1;

However, none of these seem to be available using vc6. None of the following
are recognized: AFX_HELP_TYPE, m_eHelpType, SetHelpMode, and EnableHtmlHelp.

Is there a work-around? Am I leaving something out?

How about a native Win32-api call that is equivalent?