- added instructions how to update the online documentation
[bochs-mirror.git] / iodev / scancodes.h
blob8178188a638ba36c65b29cb88134f9419528ab1b
1 /////////////////////////////////////////////////////////////////////////
2 // $Id: scancodes.h,v 1.6 2008/01/26 22:24:02 sshwarts Exp $
3 /////////////////////////////////////////////////////////////////////////
4 //
5 // Copyright (C) 2002 MandrakeSoft S.A.
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Lesser General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // Lesser General Public License for more details.
17 // You should have received a copy of the GNU Lesser General Public
18 // License along with this library; if not, write to the Free Software
19 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef BX_SCANCODES_H
22 #define BX_SCANCODES_H
24 // Translation table of the 8042
25 extern unsigned char translation8042[256];
27 typedef struct {
28 const char *make;
29 const char *brek;
30 } scancode;
32 // Scancodes table
33 extern scancode scancodes[BX_KEY_NBKEYS][3];
35 #endif