]> git.proxmox.com Git - mirror_edk2.git/blob - DuetPkg/Include/Guid/ConsoleOutConfig.h
a9e63808049f697b9c83e7f0bb9639d4d5eac659
[mirror_edk2.git] / DuetPkg / Include / Guid / ConsoleOutConfig.h
1 /**@file
2 Setup Variable data structure for Duet platform.
3
4 Copyright (c) 2010 Intel Corporation. All rights reserved
5 This software and associated documentation (if any) is furnished
6 under a license and may only be used or copied in accordance
7 with the terms of the license. Except as permitted by such
8 license, no part of this software or documentation may be
9 reproduced, stored in a retrieval system, or transmitted in any
10 form or by any means without the express written consent of
11 Intel Corporation.
12
13 **/
14
15 #ifndef __DUET_CONSOLEOUT_CONFIG_H__
16 #define __DUET_CONSOLEOUT_CONFIG_H__
17
18 #define DUET_CONSOLEOUT_CONFIG_GUID \
19 { 0xED150714, 0xDF30, 0x407D, { 0xB2, 0x4A, 0x4B, 0x74, 0x2F, 0xD5, 0xCE, 0xA2 } }
20
21 #pragma pack(1)
22 typedef struct {
23 //
24 // Console output mode
25 //
26 UINT32 ConOutColumn;
27 UINT32 ConOutRow;
28 } DUET_CONSOLEOUT_CONFIG;
29 #pragma pack()
30
31 extern EFI_GUID gDuetConsoleOutConfigGuid;
32
33 #endif