/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
docs/developers/plugins/API/menuentrysetchecked.rst
21 строка
769 B
Duncan Ogilvie
Move https://github.com/x64dbg/docs into this repo
04 июл 2025, 02:32
04 июл 2025, 02:32
699342d
Код
Авторство
О чём код?
_plugin_menuentrysetchecked =========================== This function sets the checked state of a menu entry. Notice that this function sets a menu item as checkable and thus it will toggle per default on click. If you want different behavior, make sure to call this function on every click with your desired state. :: void _plugin_menuentrysetchecked( int pluginHandle, //plugin handle int hEntry, //handle of the menu entry bool checked //new checked state ); Parameters ---------- :pluginHandle: Handle of the calling plugin. :hEntry: Menu handle from a previously-added child menu or from the main plugin menu. :checked: New checked state. Return Values ------------- This function does not return a value.