KeyMapLibNull.c 728 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*++ @file
  2. Copyright (c) 2011, Apple Inc. All rights reserved.
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #include <Uefi.h>
  6. #include <Protocol/SimpleTextInEx.h>
  7. /**
  8. KeyMapMake gets called on key presses.
  9. @param KeyData Key that was pressed.
  10. @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
  11. **/
  12. EFI_STATUS
  13. EFIAPI
  14. KeyMapMake (
  15. IN EFI_KEY_DATA *KeyData
  16. )
  17. {
  18. return EFI_SUCCESS;
  19. }
  20. /**
  21. KeyMapBreak gets called on key releases.
  22. @param KeyData Key that was pressed.
  23. @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
  24. **/
  25. EFI_STATUS
  26. EFIAPI
  27. KeyMapBreak (
  28. IN EFI_KEY_DATA *KeyData
  29. )
  30. {
  31. return EFI_SUCCESS;
  32. }