How to clear mouse click buffer
Posted
by Chau Chee Yang
on Stack Overflow
See other posts from Stack Overflow
or by Chau Chee Yang
Published on 2010-03-08T09:32:48Z
Indexed on
2010/03/08
9:36 UTC
Read the original article
Hit count: 188
We may use the following code to clear keyboard buffer:
while PeekMessage(Msg, 0, WM_KEYFIRST, WM_KEYLAST, PM_REMOVE or PM_NOYIELD) do;
But how may I clear mouse click buffer?
© Stack Overflow or respective owner