MULTIKEYHELPA structure (winuser.h)
Specifies a keyword to search for and the keyword table to be searched by Windows Help.
Syntax
typedef struct tagMULTIKEYHELPA {
#if ...
DWORD mkSize;
#else
WORD mkSize;
#endif
CHAR mkKeylist;
CHAR szKeyphrase[1];
} MULTIKEYHELPA, *PMULTIKEYHELPA, *LPMULTIKEYHELPA;
Members
mkSize
Type: DWORD
The structure size, in bytes.
mkKeylist
Type: TCHAR
A single character that identifies the keyword table to search.
szKeyphrase[1]
Type: TCHAR[1]
A null-terminated text string that specifies the keyword to locate in the keyword table.
Remarks
Note
The winuser.h header defines MULTIKEYHELP as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | winuser.h |