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.
24 lines
407 B
24 lines
407 B
#ifndef __Helpmsg_h__
|
|
#define __Helpmsg_h__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
|
|
int HelpMessageBox(
|
|
HINSTANCE hInst,
|
|
HWND hWnd, // handle to owner window
|
|
LPCTSTR lpText, // text in message box
|
|
LPCTSTR lpCaption, // message box title
|
|
UINT uType, // message box style
|
|
LPTSTR szHelpLine
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __Helpmsg_h__
|
|
|