123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*++
- Copyright (c) 2013 Minoca Corp. All Rights Reserved
- Module Name:
- inputp.h
- Abstract:
- This header contains internal definitions for the user input driver.
- Author:
- Evan Green 13-Mar-2013
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- //
- // Redefine the API define into an export.
- //
- #define USER_INPUT_API __DLLEXPORT
- #include <minoca/kernel/driver.h>
- #include <minoca/usrinput/usrinput.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- #define ANSI_ESCAPE_CODE 0x1B
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- extern UCHAR InKeyboardCharacters[KeyboardKeyMax];
- extern UCHAR InShiftedKeyboardCharacters[KeyboardKeyMax];
- //
- // -------------------------------------------------------- Function Prototypes
- //
|