]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/Include/Guid/UnixSystemConfig.h
Update Unix platform to use dynamic HII pcd to save console output mode.
[mirror_edk2.git] / UnixPkg / Include / Guid / UnixSystemConfig.h
1 /**@file
2 Setup Variable data structure for Unix platform.
3
4 Copyright (c) 2009, Intel Corporation
5 All rights reserved. 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 __UNIX_SYSTEM_CONFIGUE_H__
17 #define __UNIX_SYSTEM_CONFIGUE_H__
18
19 #define EFI_UXIX_SYSTEM_CONFIG_GUID \
20 {0x375ea976, 0x3ccd, 0x4e74, {0xa8, 0x45, 0x26, 0xb9, 0xb3, 0x24, 0xb1, 0x3c}}
21
22
23 #pragma pack(1)
24 typedef struct {
25 //
26 // Console output mode
27 //
28 UINT32 ConOutColumn;
29 UINT32 ConOutRow;
30 } WIN_NT_SYSTEM_CONFIGURATION;
31 #pragma pack()
32
33
34 extern EFI_GUID gEfiUnixSystemConfigGuid;
35
36 #endif