HelpProvider and ALinks

  • Thread starter Thread starter Sean Trace
  • Start date Start date
S

Sean Trace

Our application currently communicates with the HtmlHelp viewer using
the
Windows API routine HelpHelp

E.g.
/* Help on context */
alink.cbStruct = sizeof(HH_AKLINK);
alink.fIndexOnFail = 0;
alink.fReserved = 0;
alink.pszKeywords = context_string;
sprintf(message,"Sorry, help topic %s could not be
found.",context_string);
alink.pszMsgText = message;
alink.pszMsgTitle = "Help not found";
alink.pszUrl = 0;
alink.pszWindow = "";

hwnd =HtmlHelpA(GetDesktopWindow(),helpfile,HH_ALINK_LOOKUP,(DWORD)
&alink);

Is there any way to achieve similar functionality using the
HelpProvider? The HelpNavigator Enumeration does not have any members
which relate to ALinks. Am I limited to "HH_KEYWORD_LOOKUP" type
lookups?
 
Back
Top