I’m receiving a windows message with code 1092 (0x444) and I don’t know what it is. It’s higher than WM_USER but I searched our code base and found no reference so I don’t think it’s one of ours… does Windows use custom messages above 0x400 and if so how can I look this up?
Share
From the documentanion of WM_USER:
So, that message can be anything.
A quick look in the MFC source code, for example, reveals these definitions
I searched for
68because0x444 = 0x400 + 0x44 = WM_USER + 68