Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is ComboBox message 359 0x167?

I cannot find this info anywhere, including in the official Windows API documentation. It is sent to the subclassing procedure when the control loses focus. It is not defined in winuser.h.

It is sent like this:

0x02D - WM_DELETEITEM
0x167 - ???
0x202 - WM_LBUTTONUP

My compiler is MinGW, system Windows XP SP3.

like image 203
rsk82 Avatar asked Oct 15 '25 15:10

rsk82


1 Answers

0x167 is in the range of messages that is reserved for system use. Messages in this range that are not explicitly defined in the SDK are private for the system's internal use. This is stated as much in the documentation:

#define WM_USER 0x0400

.

0 through WM_USER –1

Messages reserved for use by the system.

Message numbers in the first range (0 through WM_USER –1) are defined by the system. Values in this range that are not explicitly defined are reserved by the system.

like image 82
Remy Lebeau Avatar answered Oct 19 '25 14:10

Remy Lebeau



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!