Literals.h 840 B

123456789101112131415161718192021222324252627
  1. /** @file
  2. Declarations 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. #ifndef _LITERALS_H_
  7. #define _LITERALS_H_
  8. // ASCII String literals which probably don't need translation
  9. extern CHAR8 const ALit_TimerLibError[];
  10. extern CHAR8 const ALit_SEC[];
  11. extern CHAR8 const ALit_DXE[];
  12. extern CHAR8 const ALit_SHELL[];
  13. extern CHAR8 const ALit_PEI[];
  14. extern CHAR8 const ALit_BDS[];
  15. extern CHAR8 const ALit_PEIM[];
  16. extern CHAR8 const ALit_START_IMAGE[];
  17. extern CHAR8 const ALit_LOAD_IMAGE[];
  18. extern CHAR8 const ALit_DB_START[];
  19. extern CHAR8 const ALit_DB_SUPPORT[];
  20. extern CHAR8 const ALit_DB_STOP[];
  21. extern CHAR8 const ALit_BdsTO[];
  22. extern CHAR8 const ALit_PEIM[];
  23. #endif // _LITERALS_H_