Share via


PFN_KEYBD_EVENT_CALLBACK_EX2 (Compact 7)

3/12/2014

This function is a prototype of the callback function passed to the PFN_KEYBD_DRIVER_INITIALIZE_EX2 function.

Syntax

typedef BOOL (*PFN_KEYBD_EVENT_CALLBACK_EX2)(
  UINT32 VirtualKey,
  UINT32 ScanCode,
  KEY_STATE_FLAGS KeyEvent,
  GUID guidKeyboard
);

Parameters

  • VirtualKey
    [in] Virtual-key code or event code. For more information on the VirtualKey layout, see %_WINCEROOT%\Public\Common\OAK\Inc\Keybddr.h.
  • ScanCode
    [in] Hardware scan code for the key.
  • KeyEvent
    [in] KeyStateDownFlag flag that is set or cleared.
  • guidKeyboard
    [in] Specifies the unique ID of the keyboard that generates the event.

Return Value

None.

Remarks

This function is deprecated. The keyboard driver does not implement this function.

This function is the prototype of the function passed into the driver by the Graphics, Windowing, and Events Subsystem (GWES) when it calls the PFN_KEYBD_DRIVER_INITIALIZE_EX2 function. The driver calls the callback function whenever there is a keyboard event.

The KeyStateDownFlagfield in the KeyEvent parameter is set for a key-down event and clear for a key-up event. All other bits in KeyEvent must be zero. The VirtualKey parameter has more than just the virtual-key code information. When a keyboard is connected or disconnected, the appropriate connect-event code or disconnect-event code set in the VirtualKey parameter must signal an event.

In keyboard drivers that do not conform to Layout Manager, this API also passes key codes to the model device driver (MDD). For information about controlling key click with the VirtualKey parameter, see %_WINCEROOT%\Public\Common\OAK\Inc\Keybddr.h.

Requirements

Header

keybddr.h

Library

layoutmanager.lib

See Also

Reference

Keyboard Driver MDD Functions