See ChangeLog entry 2000-06-14 15:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-06-14 19:32:13 +00:00
parent 6343384017
commit c8c8bfab40
2 changed files with 5 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2000-06-14 15:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rtl/gtwin/gtwin.c
! Removed debug printf() statements.
2000-06-14 10:00 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>
* source/pp/ppcore.c

View File

@@ -314,9 +314,6 @@ int hb_gt_ReadKey( HB_inkey_enum eventmask )
/* Save the keyboard state and ASCII key code */
DWORD dwState = s_irInBuf[ s_cNumIndex ].Event.KeyEvent.dwControlKeyState;
ch = s_irInBuf[ s_cNumIndex ].Event.KeyEvent.uChar.AsciiChar;
printf( "\n\nhb_gt_ReadKey: The keyboard state is 0x%04X, the character code is %d", dwState, ch );
printf( ", the virtual key code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent.wVirtualKeyCode );
printf( ", the virtual scan code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent.wVirtualScanCode );
if( ch == 224 )
{
/* Strip extended key lead-in codes */
@@ -663,7 +660,6 @@ printf( ", the virtual scan code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent
s_cNumIndex++;
}
if( ch ) printf( ", and the return code is %d", ch );
return ch;
}