MULTIKEYHELPW structure (winuser.h)

Specifies a keyword to search for and the keyword table to be searched by Windows Help.

Syntax

typedef struct tagMULTIKEYHELPW {
#if ...
  DWORD mkSize;
#else
  WORD  mkSize;
#endif
  WCHAR mkKeylist;
  WCHAR szKeyphrase[1];
} MULTIKEYHELPW, *PMULTIKEYHELPW, *LPMULTIKEYHELPW;

Members

mkSize

Type: DWORD

The structure size, in bytes.

mkKeylist

Type: WCHAR

A single character that identifies the keyword table to search.

szKeyphrase[1]

Type: WCHAR[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

See also

WinHelp