]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/Include/Guid/WinNtSystemConfig.h
975de36e429c187415b4889006938d4d337a4a57
[mirror_edk2.git] / Nt32Pkg / Include / Guid / WinNtSystemConfig.h
1 /**@file
2 Setup Variable data structure for NT32 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 __WIN_NT_SYSTEM_CONFIGUE_H__
11 #define __WIN_NT_SYSTEM_CONFIGUE_H__
12
13 #define EFI_WIN_NT_SYSTEM_CONFIG_GUID \
14 { 0xb347f047, 0xaf8c, 0x490e, { 0xac, 0x07, 0x0a, 0xa9, 0xb7, 0xe5, 0x38, 0x58 }}
15
16 #pragma pack(1)
17 typedef struct {
18 //
19 // Console output mode
20 //
21 UINT32 ConOutColumn;
22 UINT32 ConOutRow;
23 } WIN_NT_SYSTEM_CONFIGURATION;
24 #pragma pack()
25
26
27 extern EFI_GUID gEfiWinNtSystemConfigGuid;
28
29 #endif