64 bit SendMessage API
According to MSDN
The return value indicates the result of processing messages; it depends on the message sent.
I know that it is defined as
typedef LONG_PTR LRESULT;
The value will be 8 bytes on a 64-bit machine, but it is not!
Does anyone know if it can be assumed that only the lower 4 bytes are used and store it as INT
(for example).
0
source to share