• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   Setup Variable data structure for Emu platform.
3 
4 Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution.  The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9 
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13 
14 **/
15 
16 #ifndef __EMU_SYSTEM_CONFIG_H__
17 #define __EMU_SYSTEM_CONFIG_H__
18 
19 #define EFI_EMU_SYSTEM_CONFIG_GUID  \
20  { 0x9C4FB516, 0x3A1E, 0xD847, { 0xA1, 0xA1, 0x70, 0x58, 0xB6, 0x98, 0x67, 0x32 } }
21 
22 
23 #pragma pack(1)
24 typedef struct {
25   //
26   // Console output mode
27   //
28   UINT32        ConOutColumn;
29   UINT32        ConOutRow;
30 } EMU_SYSTEM_CONFIGURATION;
31 #pragma pack()
32 
33 
34 extern EFI_GUID   gEmuSystemConfigGuid;
35 
36 #endif
37