mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
14 lines
424 B
ReStructuredText
14 lines
424 B
ReStructuredText
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.
|
|
};
|