Back to X64dbg

PLUG_CB_WINEVENT

docs/developers/plugins/Callbacks/plugcbwinevent.rst

2026.04.20423 B
Original Source

PLUG_CB_WINEVENT

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:

::

struct PLUG_CB_WINEVENT
{
    MSG* message;
    long* result;
    bool retval; //only set this to true if you want Qt to ignore the event.
};