SHOWKEYS 1.0.0 (Windows 1.x version)              John Elliott, 24 August 2011
==============================================================================

  SHOWKEYS is a quick and simple application to display the codes that keys
return under Windows: Scancodes, VK_ codes and key names. This version is a
backport to Windows 1.0, in case you want to test a keyboard layout under
Windows 1.x or 2.x. For all other Windows versions, I strongly recommend the
use of the proper MFC version, downloadable at 
<http://www.seasip.info/Misc/keyboards.html>.

  Compare to the full version, this is missing:
* Key name text, since Windows 1 does not provide GetKeyNameText().
* The Keyboard menu, since Windows 1 does not provide GetKeyboardType(). 

  To use it, launch one or other application and press keys. Key-press and 
key-release messages (WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN and WM_SYSKEYUP) 
will be shown in the main window. For each key, the following parameters are 
shown:

- Char, RepCnt, Flags: The parameters of the Windows message. 
	* Char is the Windows virtual keycode.
	* RepCnt is the number of times the key repeated since the last
	 message (usually 1).
	* Flags contains the scancode (low 8 bits), whether the scancode
	 is an extended scancode (bit 8) and other information.

- VK_ code: The textual equivalent of the Windows virtual keycode -- if it's
 	one that SHOWKEYS knows about.

Source
~~~~~~

  showksrc.zip contains the source code, plus a Makefile for Microsoft C 4.

Licence
~~~~~~~

SHOWKEYS v1.0.0
Copyright 2011 John Elliott <jce@seasip.demon.co.uk>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

