Log in

View Full Version : Windows message constants


Hero
July 26th, 2004, 00:36
Hi All
I am trying too crack a simple application.but I need some help.
I know that we can handle a specific windows messages in Application,
by setting a simple conditional breakpoint.But I want to know the
windows message constants(for example WM_PAINT).Where can I
find the list of Windows message constantsValues (I mean for example
111h is WM_COMMAND value)?
I can't find it in MSDN (perhaps I couldn't).

sincerely yours

ZaiRoN
July 26th, 2004, 03:55
Hi.
There is a file called Windows.inc, that comes with masm package, containing all these values. I don't have it on this machine but, if you want I will attach it here later.

Regards,
ZaiRoN

ps. WM_PAINT = 0Fh

shadz
July 26th, 2004, 05:12
softice also has an online list accessible by typing wmsg
and ida has a partial list as part of its enumaration libraries.

alternatively, one of the standard windows header files should have the complete list...

-Shadz

Hero
July 26th, 2004, 06:53
Thanks for help.