Josselin Bardet wrote:
Nikolay Sivov a écrit :
As I already said in bugzilla:
- use SendMessageW
- add FIXME for unused flags or use them
- no need for brackets around SendMessage
- add a simple test (if native send this message - you can check it
easily with Spy in Windows)
Proposed implementation: Adding in include/winuser.h
if (nFlags & PW_CLIENTONLY == 0) flags |= PRF_NONCLIENT;
It's better to use !(nFlags & PW_CLIENTONLY) for me.
Post updated version anyway.