]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Drivers/ConsolePrefDxe/ConsolePrefDxe.h
BaseTools/Capsule: Do not support -o with --dump-info
[mirror_edk2.git] / EmbeddedPkg / Drivers / ConsolePrefDxe / ConsolePrefDxe.h
1 /** @file
2 *
3 * Copyright (c) 2017, Linaro Limited. All rights reserved.
4 *
5 * This program and the accompanying materials are licensed and made available
6 * under the terms and conditions of the BSD License which accompanies this
7 * 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 #ifndef __CONSOLE_PREF_DXE_H__
16 #define __CONSOLE_PREF_DXE_H__
17
18 #include <Guid/HiiPlatformSetupFormset.h>
19 #include <Guid/ConsolePrefFormSet.h>
20
21 #define CONSOLE_PREF_GRAPHICAL 0x0
22 #define CONSOLE_PREF_SERIAL 0x1
23
24 #define CONSOLE_PREF_VARIABLE_NAME L"ConsolePref"
25
26 typedef struct {
27 UINT8 Console;
28 UINT8 Reserved[3];
29 } CONSOLE_PREF_VARSTORE_DATA;
30
31 #endif