GuiMenuAddSeparator
将菜单分隔符添加到菜单。
void GuiMenuAddSeparator(int hMenu)
参数
hMenu
Menu handle from a previously-added menu or from the main menu.
返回值
此函数不返回值。
示例
hNewMenu = GuiMenuAdd(hMenu, &szMenuTitle); GuiMenuAddEntry(hNewMenu, &szMenuEntry1Text); GuiMenuAddEntry(hNewMenu, &szMenuEntry2Text); GuiMenuAddSeparator(hNewMenu); GuiMenuAddEntry(hNewMenu, &szMenuEntry3Text); GuiMenuAddEntry(hNewMenu, &szMenuEntry4Text);
相关函数
Note: Plugin developers should make use of the plugin functions provided: