.:: scankey ::.

*SYNOPSIS*
A tiny tool which helps developing keymaps.

*DETAILS*
Scans the keycode and decodes it into three parts.
  key pressed: 41H / 1EH / 0
                |     |    |
  VKeycode -----+     |    |
  OEM scancode -------+    |
  Extension flag ----------+

So, you can recognize extension keys(Right-Alt, Right-Ctrl, Arrows, etc);
e.g.
 Left-Alt:   key pressed: 12H / 38H / 0
 Right-Alt:  key pressed: 12H / 38H / 1

When you have collected all key table, put the information on
scancode_to_vk by order of "OEM scancode".
Note: don't forget to put VKeycode(such as VK_LSHIFT) instead of raw
hex value(0x10).

Refer the source for more details.


*COMMENT*
I hope it helps developing keymaps :-)


*EXTRA MEMO*
This tool supports neither PrintScreen key nor context code.


*ABOUT*
March, 2004
Author: Masahiro Taguchi(mtg@ce.wakwak.com)
