winapi – What format is the time member of a MSG structure? – Stack Overflow
Posted by jpluimers on 2020/12/22
Found it.
GetMessageTime
defines it as the number of milliseconds since the system was started.
Source: [WayBack] winapi – What format is the time member of a MSG structure? – Stack Overflow.
It is not documented in the MSG
/tagMSG
documentation: [WayBack] tagMSG | Microsoft Docs Contains message information from a thread’s message queue.
Luckily, The Old New Thing does: [WayBack] What clock do MSG.time and GetMessageTime use? – The Old New Thing
The unit is documented in [WayBack] GetMessageTime function | Microsoft Docs: Retrieves the message time for the last message retrieved by the GetMessage
function.
–jeroen
Leave a Reply