The MULTIKEYHELP structure specifies a key-word table and an associated key word to be used by the Windows Help application.
typedef struct tagMULTIKEYHELP {
WORD mkSize;
BYTE mkKeylist;
BYTE szKeyphrase[];
} MULTIKEYHELP;
The MULTIKEYHELP data structure contains the following fields:
Field | Description | |
mkSize | Specifies the length of the MULTIKEYHELP structure (in bytes). | |
mkKeylist | Contains a single character that identifies the key-word table to be searched. | |
szKeyphrase[ ] | Contains a null-terminated text string that specifies the key word to be located in the key-word table. |