/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
docs/developers/plugins/API/menuaddentry.rst
23 строки
718 B
Duncan Ogilvie
Move https://github.com/x64dbg/docs into this repo
04 июл 2025, 02:32
04 июл 2025, 02:32
699342d
Код
Авторство
О чём код?
==================== _plugin_menuaddentry ==================== This function adds a menu entry to a menu. :: bool _plugin_menuaddentry( int hMenu, //menu handle to add the new child menu to int hEntry, //plugin-wide identifier for the menu entry const char* title //menu entry title ); Parameters ---------- :hMenu: Menu handle from a previously-added child menu or from the main plugin menu. :hEntry: A plugin-wide identifier for the menu entry. This is the value you will get in the `PLUG_CB_MENUENTRY` callback structure. :title: Menu entry title. Return Values ------------- Returns `true` when the entry was added without problems, `false` otherwise.