mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
1.2 KiB
1.2 KiB
GuiMenuAddSeparator
Adds a menu separator to a menu.
void GuiMenuAddSeparator(int hMenu)
Parameters
hMenu Menu handle from a previously-added menu or from the main menu.
Return Value
This function does not return a value.
Example
hNewMenu = GuiMenuAdd(hMenu, &szMenuTitle);
GuiMenuAddEntry(hNewMenu, &szMenuEntry1Text);
GuiMenuAddEntry(hNewMenu, &szMenuEntry2Text);
GuiMenuAddSeparator(hNewMenu);
GuiMenuAddEntry(hNewMenu, &szMenuEntry3Text);
GuiMenuAddEntry(hNewMenu, &szMenuEntry4Text);
Related functions
Note: Plugin developers should make use of the plugin functions provided: