diff options
author | Yi Li <yi1.li@intel.com> | 2023-12-22 10:23:30 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-02-26 15:32:09 +0000 |
commit | 44fdc4f3983be77dda709d7a0c3fb8905fbf920b (patch) | |
tree | 118e016c07d787e0b843a52f6baa9e049e7176e0 /BaseTools | |
parent | d0c0e1960a48855ebcb0317b4224952e2c948667 (diff) | |
download | edk2-44fdc4f3983be77dda709d7a0c3fb8905fbf920b.zip edk2-44fdc4f3983be77dda709d7a0c3fb8905fbf920b.tar.gz edk2-44fdc4f3983be77dda709d7a0c3fb8905fbf920b.tar.bz2 |
BaseTools: Update keybaord map based on UEFI spec 2.10
REF: UEFI SPEC 2.10 34.8.10 EFI_KEY
Add EfiKeyIntl0-9.
Signed-off-by: Yi Li <yi1.li@intel.com>
Cc: Rebecca Cran <rebecca@bsdio.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Yuwei Chen <yuwei.chen@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/Include/Common/UefiInternalFormRepresentation.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/BaseTools/Source/C/Include/Common/UefiInternalFormRepresentation.h b/BaseTools/Source/C/Include/Common/UefiInternalFormRepresentation.h index b9fa8c3..cb009ed 100644 --- a/BaseTools/Source/C/Include/Common/UefiInternalFormRepresentation.h +++ b/BaseTools/Source/C/Include/Common/UefiInternalFormRepresentation.h @@ -1556,7 +1556,17 @@ typedef enum { EfiKeyF12,
EfiKeyPrint,
EfiKeySLck,
- EfiKeyPause
+ EfiKeyPause,
+ EfiKeyIntl0,
+ EfiKeyIntl1,
+ EfiKeyIntl2,
+ EfiKeyIntl3,
+ EfiKeyIntl4,
+ EfiKeyIntl5,
+ EfiKeyIntl6,
+ EfiKeyIntl7,
+ EfiKeyIntl8,
+ EfiKeyIntl9
} EFI_KEY;
typedef struct {
|