Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
838 B

  1. /*++
  2. Copyright (c) 1998 Intel Corporation
  3. Module Name:
  4. data.c
  5. Abstract:
  6. Shell Environment driver global data
  7. Revision History
  8. --*/
  9. #include "shelllib.h"
  10. /*
  11. *
  12. */
  13. EFI_SHELL_INTERFACE *SI;
  14. EFI_SHELL_ENVIRONMENT *SE;
  15. /*
  16. *
  17. */
  18. EFI_GUID ShellInterfaceProtocol = SHELL_INTERFACE_PROTOCOL;
  19. EFI_GUID ShellEnvProtocol = SHELL_ENVIRONMENT_INTERFACE_PROTOCOL;
  20. /*
  21. *
  22. */
  23. CHAR16 *ShellLibMemoryTypeDesc[EfiMaxMemoryType] = {
  24. L"reserved ",
  25. L"LoaderCode",
  26. L"LoaderData",
  27. L"BS_code ",
  28. L"BS_data ",
  29. L"RT_code ",
  30. L"RT_data ",
  31. L"available ",
  32. L"Unusable ",
  33. L"ACPI_recl ",
  34. L"ACPI_NVS ",
  35. L"MemMapIO ",
  36. L"MemPortIO ",
  37. L"PAL_code "
  38. };