Changeset 7190 for trunk/src/user32/HOOK.CPP
- Timestamp:
- Oct 24, 2001, 2:27:06 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/HOOK.CPP
r7165 r7190 1 /* $Id: HOOK.CPP,v 1.2 8 2001-10-23 06:22:52phaller Exp $ */1 /* $Id: HOOK.CPP,v 1.29 2001-10-24 12:26:56 phaller Exp $ */ 2 2 3 3 /* … … 783 783 // ALT-Key comes in with different scan code (0xa4 == VK_LMENU_W), 784 784 // then gets translated to 0x12 785 if ( (msg->wParam == VK_LMENU) || 786 (msg->wParam == VK_RMENU) ) 785 switch (msg->wParam) 787 786 { 788 msg->wParam = VK_MENU; // 0x12 787 case VK_LMENU: 788 case VK_RMENU: 789 msg->wParam = VK_MENU; // 0x12 790 break; 791 792 case VK_LCONTROL: 793 case VK_CONTROL: 794 msg->wParam = VK_CONTROL; // 0x11 795 break; 789 796 } 790 797
Note:
See TracChangeset
for help on using the changeset viewer.