mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
421 B
19 lines
421 B
/* help.h
|
|
*
|
|
* definitions for help facility
|
|
* most of which comes from FloydR's memo
|
|
*/
|
|
|
|
#define WM_HELP 0x3f8
|
|
|
|
#define HELP_INDEX 0xffff
|
|
#define HELP_FIND 0xfffe
|
|
#define HELP_QUIT 0xfffd
|
|
#define HELP_HELP 0xfffc
|
|
#define HELP_FOCUS 0xfffb
|
|
#define HELP_LAST 0xfffa
|
|
#define HELP_KEY2STR 0xfff9
|
|
#define HELP_STR2KEY 0xfff8
|
|
#define HELP_XLATE 0xfff7
|
|
|
|
BOOL FAR APIENTRY FRequestHelp(HANDLE, HWND, WORD);
|