Use this structure to specify one or more ALink names or KLink keywords that you want to search for.
If the lookup yields no matching topics, HtmlHelp() checks the values of the following HH_AKLINK members to determine what alternative action to take:
typedef struct tagHH_AKLINK
{
int cbStruct;
BOOL fReserved;
LPCTSTR pszKeywords;
LPCTSTR pszUrl;
LPCTSTR pszMsgText;
LPCTSTR pszMsgTitle;
LPCTSTR pszWindow;
BOOL fIndexOnFail;
} HH_AKLINK;
Member | Description |
---|---|
cbStruct | Specifies the size of the structure. This value must always be filled in before passing the structure to the HTML Help API. |
fReserved | This parameter must be set to FALSE. |
pszKeywords | Specifies one or more ALink names or KLink keywords to look up. Multiple entries are delimited by a semicolon. |
pszUrl | Specifies the topic file to navigate to if the lookup fails. pszURL refers to a valid topic within the specified compiled help (.chm) file and does not support Internet protocols that point to an HTML file. |
pszMsgText | Specifies the text to display in a message box if the lookup fails and fIndexOnFail is FALSE and pszURL is NULL. |
pszMsgTitle | Specifies the caption of the message box in which the pszMsgText parameter appears. |
pszWindow | Specifies the name of the window type in which to display one of the following:
|
fIndexOnFail | Specifies whether to display the keyword in the Index tab of the HTML Help Viewer if the lookup fails. The value of pszWindow specifies the Help Viewer. |
About structures | |