2010-02-22 07:03:08 +01:00
|
|
|
/**@file
|
|
|
|
Setup Variable data structure for Duet platform.
|
|
|
|
|
2010-03-10 03:36:05 +01:00
|
|
|
Copyright (c) 2010 Intel Corporation. All rights reserved.<BR>
|
2010-03-10 02:23:13 +01:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2010-02-22 07:03:08 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __DUET_CONSOLEOUT_CONFIG_H__
|
|
|
|
#define __DUET_CONSOLEOUT_CONFIG_H__
|
|
|
|
|
|
|
|
#define DUET_CONSOLEOUT_CONFIG_GUID \
|
|
|
|
{ 0xED150714, 0xDF30, 0x407D, { 0xB2, 0x4A, 0x4B, 0x74, 0x2F, 0xD5, 0xCE, 0xA2 } }
|
|
|
|
|
|
|
|
#pragma pack(1)
|
|
|
|
typedef struct {
|
|
|
|
//
|
|
|
|
// Console output mode
|
|
|
|
//
|
|
|
|
UINT32 ConOutColumn;
|
|
|
|
UINT32 ConOutRow;
|
|
|
|
} DUET_CONSOLEOUT_CONFIG;
|
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
extern EFI_GUID gDuetConsoleOutConfigGuid;
|
|
|
|
|
|
|
|
#endif
|