mirror of https://github.com/tongzx/nt5src
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.
21 lines
420 B
21 lines
420 B
// File: nmhelp.h
|
|
|
|
#ifndef _NMHELP_H_
|
|
#define _NMHELP_H_
|
|
|
|
#include <htmlhelp.h>
|
|
|
|
HRESULT InitHtmlHelpMarshaler(HINSTANCE hInst);
|
|
|
|
VOID ShowNmHelp(LPCTSTR lpcszHtmlHelpFile);
|
|
|
|
VOID DoNmHelp(HWND hwnd, UINT uCommand, DWORD_PTR dwData);
|
|
VOID DoHelp(LPARAM lParam);
|
|
VOID DoHelp(LPARAM lParam, const DWORD * rgId);
|
|
VOID DoHelpWhatsThis(WPARAM wParam, const DWORD * rgId);
|
|
|
|
VOID ShutDownHelp(void);
|
|
|
|
#endif /* _NMHELP_H_ */
|
|
|
|
|