"Lei Zhang" thestig@google.com wrote:
In dlls/user32/tests/msg.c, there's the following enum:
typedef enum { sent=0x1, posted=0x2, parent=0x4, wparam=0x8, lparam=0x10, defwinproc=0x20, beginpaint=0x40, optional=0x80, hook=0x100, winevent_hook=0x200 } msg_flags_t;
Can someone explain what these flags mean?
I'd expect it should be obvious. Use the source Lei! :-)
parent
A message sent by a parent
defwinproc
A message resulted from a DefWindowProc call
beginpaint
A message resulted from of a BeginPaint call
hook
A message sent by a hook
winevent_hook
A message sent by a winevent hook