]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/Include/Guid/EmuSystemConfig.h
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / Include / Guid / EmuSystemConfig.h
1 /** @file
2 Setup Variable data structure for Emu platform.
3
4 Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8 **/
9
10 #ifndef __EMU_SYSTEM_CONFIG_H__
11 #define __EMU_SYSTEM_CONFIG_H__
12
13 #define EFI_EMU_SYSTEM_CONFIG_GUID \
14 { 0x9C4FB516, 0x3A1E, 0xD847, { 0xA1, 0xA1, 0x70, 0x58, 0xB6, 0x98, 0x67, 0x32 } }
15
16
17 #pragma pack(1)
18 typedef struct {
19 //
20 // Console output mode
21 //
22 UINT32 ConOutColumn;
23 UINT32 ConOutRow;
24 } EMU_SYSTEM_CONFIGURATION;
25 #pragma pack()
26
27
28 extern EFI_GUID gEmuSystemConfigGuid;
29
30 #endif