Home | History | Annotate | Download | only in Guid
      1 /**@file
      2   Setup Variable data structure for NT32 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 __WIN_NT_SYSTEM_CONFIGUE_H__
     17 #define __WIN_NT_SYSTEM_CONFIGUE_H__
     18 
     19 #define EFI_WIN_NT_SYSTEM_CONFIG_GUID  \
     20   { 0xb347f047, 0xaf8c, 0x490e, { 0xac, 0x07, 0x0a, 0xa9, 0xb7, 0xe5, 0x38, 0x58 }}
     21 
     22 #pragma pack(1)
     23 typedef struct {
     24   //
     25   // Console output mode
     26   //
     27   UINT32        ConOutColumn;
     28   UINT32        ConOutRow;
     29 } WIN_NT_SYSTEM_CONFIGURATION;
     30 #pragma pack()
     31 
     32 
     33 extern EFI_GUID   gEfiWinNtSystemConfigGuid;
     34 
     35 #endif
     36