Literals.c 937 B

12345678910111213141516171819202122
  1. /** @file
  2. Definitions of ASCII string literals used by DP.
  3. Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #include <Guid/ExtendedFirmwarePerformance.h>
  7. // ASCII String literals which probably don't need translation
  8. CHAR8 const ALit_TimerLibError[] = "Timer library instance error!\n";
  9. CHAR8 const ALit_SEC[] = SEC_TOK;
  10. CHAR8 const ALit_DXE[] = DXE_TOK;
  11. CHAR8 const ALit_PEI[] = PEI_TOK;
  12. CHAR8 const ALit_BDS[] = BDS_TOK;
  13. CHAR8 const ALit_START_IMAGE[] = START_IMAGE_TOK;
  14. CHAR8 const ALit_LOAD_IMAGE[] = LOAD_IMAGE_TOK;
  15. CHAR8 const ALit_DB_START[] = DRIVERBINDING_START_TOK;
  16. CHAR8 const ALit_DB_SUPPORT[] = DRIVERBINDING_SUPPORT_TOK;
  17. CHAR8 const ALit_DB_STOP[] = DRIVERBINDING_STOP_TOK;
  18. CHAR8 const ALit_BdsTO[] = "BdsTimeOut";
  19. CHAR8 const ALit_PEIM[] = "PEIM";