【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.1.25.43 IsMenu
Contents
Description
This function determines whether a handle is a menu handle.
Syntax
BOOL IsMenu( HMENU hMenu )
Parameters
- hMenu
- [input] Handle to the menu.
Return
If hMenu is a menu handle, the return value is TRUE.
Examples
EX1
void IsMenu_ex1() { HMENU hmn = GetMenu(GetWindow()); if ( IsMenu(hmn) ) out_str("Get Menu handler successfully"); return; }
Remark
See Also
Header to Include
origin.h