MOUSEMOVE notification id is 10 instead of 0x10

This commit is contained in:
Anonymous Maarten 2023-06-15 03:11:29 +02:00
parent b7ce2a0df5
commit 13159fc7ea

View File

@ -7,7 +7,7 @@ __declspec(dllexport) enum NotificationId
KEYDOWN = 0x7,
MOUSEUP = 0x8,
MOUSEDOWN = 0x9,
MOUSEMOVE = 0x10,
MOUSEMOVE = 0xA,
TIMER = 0xF
};