Changeset 7165 for trunk/src


Ignore:
Timestamp:
Oct 23, 2001, 8:22:52 AM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/HOOK.CPP

    r7155 r7165  
    1 /* $Id: HOOK.CPP,v 1.27 2001-10-22 23:14:32 phaller Exp $ */
     1/* $Id: HOOK.CPP,v 1.28 2001-10-23 06:22:52 phaller Exp $ */
    22
    33/*
     
    780780  // call the low level hook first
    781781  ProcessKbdHookLL(msg, remove, FALSE);
     782 
     783  // ALT-Key comes in with different scan code (0xa4 == VK_LMENU_W),
     784  // then gets translated to 0x12
     785  if ( (msg->wParam == VK_LMENU) ||
     786       (msg->wParam == VK_RMENU) )
     787  {
     788    msg->wParam = VK_MENU; // 0x12
     789  }
    782790 
    783791    /* Handle F1 key by sending out WM_HELP message */
Note: See TracChangeset for help on using the changeset viewer.