mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
Base is FreeLdr from trunk r25063. svn path=/branches/winldr/; revision=25066
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/*
|
|
* FreeLoader
|
|
* Copyright (C) 1998-2003 Brian Palmer <[email protected]>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __KEYCODES_H
|
|
#define __KEYCODES_H
|
|
|
|
|
|
// Key codes
|
|
#define KEY_EXTENDED 0x00
|
|
#define KEY_ENTER 0x0D
|
|
#define KEY_BACKSPACE 0x08
|
|
#define KEY_SPACE 0x20
|
|
#define KEY_UP 0x48
|
|
#define KEY_DOWN 0x50
|
|
#define KEY_LEFT 0x4B
|
|
#define KEY_RIGHT 0x4D
|
|
#define KEY_ESC 0x1B
|
|
#define KEY_F1 0x3B
|
|
#define KEY_F2 0x3C
|
|
#define KEY_F3 0x3D
|
|
#define KEY_F4 0x3E
|
|
#define KEY_F5 0x3F
|
|
#define KEY_F6 0x40
|
|
#define KEY_F7 0x41
|
|
#define KEY_F8 0x42
|
|
#define KEY_F9 0x43
|
|
#define KEY_F10 0x44
|
|
|
|
|
|
#endif // #defined __KEYCODES_H
|