Good afternoon.
I have "RedHat-7.2" and "dosemu-1.0.2".
A problem - keys F11 and F12 do not work at performance
dos-D-a-k-I 'keystroke ...."
For the decision of this problem I offer small updating
dosemu-1.0.2/src/base/keyboard/prestroke.c
case 'F': { /* example: \F12; == key F12
\F1; == key F1 */
keynum = GETNUMBER(in);
if ((keynum > 0) && (keynum < 11)) {
keynum += 0x3a;
*(out++) = keynum; /* key pressed */
*(out++) = keynum | 0x80; /* key released */
*(out++) = 0;
return in; }
if (keynum == 11) {
keynum = 0x57;
*(out++) = keynum; /* key pressed */
*(out++) = keynum | 0x80; /* key released */
*(out++) = 0;
return in; }
if (keynum == 12) {
keynum = 0x58;
*(out++) = keynum; /* key pressed */
*(out++) = keynum | 0x80; /* key released */
*(out++) = 0;
return in; }
}
----
http://www.rambler.ru
-
To unsubscribe from this list: send the line "unsubscribe linux-msdos" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html