Is there an enumeration for the WM_ messages????

  • Thread starter Thread starter 0to60
  • Start date Start date
0

0to60

If I overload WndProc(), I'll want a switch() in there to act on different
windows WM_ messages like WM_MOUSEMOVE and stuff like that. Trouble is, how
do I find the value of these constants? I know, I can hunt around in
winuser.h for them, but if I'm a VB or C# guy, that's kind of a roundabout
solution. The ".net" way of doing this would be to give me an enum that
contained all the values. Is there such a thing? I can't find one.
 
Hi 0to60,
AFAIK there is no such a structure. The only way is to look at c++ header
files.
As long as using platform dependent stuff should be avoided the framework
doesn't provide this info.

B\rgds
100
 
Back
Top