]>
Commit | Line | Data |
---|---|---|
fcf24bad | 1 | /**@file\r |
2 | Setup Variable data structure for NT32 platform.\r | |
3 | \r | |
8f2a5f80 HT |
4 | Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>\r |
5 | This program and the accompanying materials \r | |
fcf24bad | 6 | are licensed and made available under the terms and conditions of the BSD License \r |
7 | which accompanies this distribution. The full text of the license may be found at \r | |
8 | http://opensource.org/licenses/bsd-license.php \r | |
9 | \r | |
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r | |
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r | |
12 | \r | |
13 | \r | |
14 | **/\r | |
15 | \r | |
16 | #ifndef __WIN_NT_SYSTEM_CONFIGUE_H__\r | |
17 | #define __WIN_NT_SYSTEM_CONFIGUE_H__\r | |
18 | \r | |
19 | #define EFI_WIN_NT_SYSTEM_CONFIG_GUID \\r | |
20 | { 0xb347f047, 0xaf8c, 0x490e, { 0xac, 0x07, 0x0a, 0xa9, 0xb7, 0xe5, 0x38, 0x58 }}\r | |
21 | \r | |
22 | #pragma pack(1)\r | |
23 | typedef struct {\r | |
24 | //\r | |
25 | // Console output mode\r | |
26 | //\r | |
27 | UINT32 ConOutColumn;\r | |
28 | UINT32 ConOutRow;\r | |
29 | } WIN_NT_SYSTEM_CONFIGURATION;\r | |
30 | #pragma pack()\r | |
31 | \r | |
32 | \r | |
33 | extern EFI_GUID gEfiWinNtSystemConfigGuid;\r | |
34 | \r | |
35 | #endif\r |