EmuSystemConfig.h 601 B

12345678910111213141516171819202122232425262728
  1. /** @file
  2. Setup Variable data structure for Emu platform.
  3. Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __EMU_SYSTEM_CONFIG_H__
  7. #define __EMU_SYSTEM_CONFIG_H__
  8. #define EFI_EMU_SYSTEM_CONFIG_GUID \
  9. { 0x9C4FB516, 0x3A1E, 0xD847, { 0xA1, 0xA1, 0x70, 0x58, 0xB6, 0x98, 0x67, 0x32 } }
  10. #pragma pack(1)
  11. typedef struct {
  12. //
  13. // Console output mode
  14. //
  15. UINT32 ConOutColumn;
  16. UINT32 ConOutRow;
  17. } EMU_SYSTEM_CONFIGURATION;
  18. #pragma pack()
  19. extern EFI_GUID gEmuSystemConfigGuid;
  20. #endif