Please change the code for keys.c to include the following change to
readString. This prevents it from outputting the key to the console.
#ifdef WIN32
#include "conio.h"
#endif
int i=0;
while(i<MAXKEYBYTES)
{
iKeyBuffer[i] = getch();
if (iKeyBuffer[i] == 0xd ) // enter key
break;
i++;
}
iKeyBuffer[i] = (char)0;
Other than this change, the software is great. Keep up the good work.
Nobody/Anonymous
Interface Improvements (example)
Next Release (example)
Public
| Filename | Description | Download |
|---|---|---|
| keys.c | Updated version of keys.c with changes | Download |
| Field | Old Value | Date | By |
|---|---|---|---|
| File Added | 251649: keys.c | 2007-10-28 02:37 | somewakko |