<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Ok... this is the point i am now...</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>in file sqWin32Window.c there is...</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/* The following is a mapping to Mac Roman 
glyphs.<BR>&nbsp;&nbsp; It is not entirely correct since a number of glyphs 
are<BR>&nbsp;&nbsp; different but should be good enough for 
Squeak.<BR>&nbsp;&nbsp; More significantly, we can now map in both directions. 
*/<BR>static unsigned char keymap[256] =<BR>{<BR>&nbsp; 0,&nbsp; 1,&nbsp; 
2,&nbsp; 3,&nbsp; 4,&nbsp; 5,&nbsp; 6,&nbsp; 7,&nbsp; 8,&nbsp; 9, 10, 11, 12, 
13, 14, 15,<BR>&nbsp;16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 
31,<BR>&nbsp;32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 
47,<BR>&nbsp;48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 
63,<BR>&nbsp;64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 
79,<BR>&nbsp;80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 
95,<BR>&nbsp;96, 97, 98, 
99,100,101,102,103,104,105,106,107,108,109,110,111,<BR>112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,<BR>173,176,226,196,227,201,160,224,246,228,178,220,206,179,182,183,<BR>184,212,213,210,211,165,208,209,247,170,185,221,207,186,189,217,<BR>202,193,162,163,219,180,195,164,172,169,187,199,194,197,168,248,<BR>161,177,198,215,171,181,166,225,252,218,188,200,222,223,240,192,<BR>203,231,229,204,128,129,174,130,233,131,230,232,237,234,235,236,<BR>245,132,241,238,239,205,133,249,175,244,242,243,134,250,251,167,<BR>136,135,137,139,138,140,190,141,143,142,144,145,147,146,148,149,<BR>253,150,152,151,153,155,154,214,191,157,156,158,159,254,255,216<BR>};</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>which is then used by </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>int recordKeyboardEvent(MSG *msg) {</FONT></DIV>
<DIV><FONT face=Arial size=2>...</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp; ctrl = GetKeyState(VK_CONTROL) &amp; 
0x8000;<BR>&nbsp; /* now the key code */<BR>&nbsp; virtCode = 
mapVirtualKey(msg-&gt;wParam);<BR>&nbsp; keyCode = 
keymap[msg-&gt;wParam];&nbsp;&nbsp;&nbsp;&nbsp;// HERE<BR>&nbsp; /* press code 
must differentiate */<BR>&nbsp; switch(msg-&gt;message) {<BR>&nbsp;&nbsp;&nbsp; 
case WM_KEYDOWN:</FONT></DIV>
<DIV><FONT face=Arial size=2>...</FONT></DIV>
<DIV><FONT face=Arial size=2>}</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>The thing is that </FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; msg-&gt;wParam</FONT></DIV>
<DIV><FONT face=Arial size=2>looks like it sends 8-bit CP1253 charcodes in the 
range [0...255].</FONT></DIV>
<DIV><FONT face=Arial size=2>(Did i mention that i am trying to make it work in 
a Windows system?...well i am...)</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>What can i do to retrieve Unicode 
charcodes?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Christos</FONT></DIV></BODY></HTML>