Ignore:
Timestamp:
Dec 11, 2001, 6:34:53 PM (24 years ago)
Author:
sandervl
Message:

hook, scancode + altgr fixes

File:
1 edited

Legend:

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

    r7306 r7612  
    1 /* $Id: HOOK.CPP,v 1.33 2001-11-09 01:26:14 phaller Exp $ */
     1/* $Id: HOOK.CPP,v 1.34 2001-12-11 17:34:52 sandervl Exp $ */
    22
    33/*
     
    780780{
    781781  // call the low level hook first
    782   ProcessKbdHookLL(msg, remove, FALSE);
    783  
     782  if(ProcessKbdHookLL(msg, remove, FALSE) == TRUE) return TRUE;
     783
    784784  // ALT-Key comes in with different scan code (0xa4 == VK_LMENU_W),
    785785  // then gets translated to 0x12
     
    872872  kbhs.dwExtraInfo = 0; // @@@PH not supported?
    873873 
     874  dprintf(("WH_KEYBOARD_LL: kbhs.vkCode %x kbhs.scanCode %x kbhs.flags %x", kbhs.vkCode, kbhs.scanCode, kbhs.flags));
     875
    874876  return (HOOK_CallHooksA(WH_KEYBOARD_LL,
    875877                          flagRemove ? HC_ACTION : HC_NOREMOVE,
Note: See TracChangeset for help on using the changeset viewer.