/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
docs/developers/plugins/Callbacks/plugcbwineventglobal.rst
15 строк
579 B
Duncan Ogilvie
Move https://github.com/x64dbg/docs into this repo
04 июл 2025, 02:32
04 июл 2025, 02:32
699342d
Код
Авторство
О чём код?
PLUG_CB_WINEVENTGLOBAL ====================== Called before TranslateMessage and DispatchMessage Windows functions (PreTranslateMessage). Avoid calling user32 functions without precautions here, there will be a recursive call if you fail to take countermeasures. This function is global, so it also captures hotkeys (see Qt documentation). In Qt5 this function is almost never called, use :doc:`plugcbwinevent` instead. :: struct PLUG_CB_WINEVENTGLOBAL { MSG* message; bool retval; //only set this to true if you want Qt to ignore the event. };