MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / DispatchNext

Function DispatchNext

Engine/source/windowManager/win32/winDispatch.cpp:582–589  ·  view source on GitHub ↗

Dispatch next even in the queue

Source from the content-addressed store, hash-verified

580
581// Dispatch next even in the queue
582bool DispatchNext()
583{
584 WinMessageQueue::Message msg;
585 if (!_MessageQueue.next(&msg))
586 return false;
587 _dispatch(msg.hWnd,msg.message,msg.wparam,msg.lparam);
588 return true;
589}
590
591// Remove events from the queue
592void DispatchRemove(HWND hWnd)

Callers 1

_processMethod · 0.85

Calls 2

_dispatchFunction · 0.85
nextMethod · 0.45

Tested by

no test coverage detected