Changeset 77662 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Include/Protocol/SimpleTextOut.h
- Timestamp:
- Mar 12, 2019 12:40:12 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129295
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776 /vendor/edk2/current 103735-103757,103769-103776,129194-129237
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Include/Protocol/SimpleTextOut.h
r58466 r77662 7 7 of multiple physical devices. 8 8 9 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>9 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> 10 10 This program and the accompanying materials are licensed and made available under 11 11 the terms and conditions of the BSD License that accompanies this distribution. … … 116 116 #define EFI_LIGHTGRAY (EFI_BLUE | EFI_GREEN | EFI_RED) 117 117 #define EFI_BRIGHT 0x08 118 #define EFI_DARKGRAY (EFI_B RIGHT)118 #define EFI_DARKGRAY (EFI_BLACK | EFI_BRIGHT) 119 119 #define EFI_LIGHTBLUE (EFI_BLUE | EFI_BRIGHT) 120 120 #define EFI_LIGHTGREEN (EFI_GREEN | EFI_BRIGHT) … … 125 125 #define EFI_WHITE (EFI_BLUE | EFI_GREEN | EFI_RED | EFI_BRIGHT) 126 126 127 #define EFI_TEXT_ATTR(f, b) ((f) | ((b) << 4)) 127 // 128 // Macro to accept color values in their raw form to create 129 // a value that represents both a foreground and background 130 // color in a single byte. 131 // For Foreground, and EFI_* value is valid from EFI_BLACK(0x00) to 132 // EFI_WHITE (0x0F). 133 // For Background, only EFI_BLACK, EFI_BLUE, EFI_GREEN, EFI_CYAN, 134 // EFI_RED, EFI_MAGENTA, EFI_BROWN, and EFI_LIGHTGRAY are acceptable 135 // 136 // Do not use EFI_BACKGROUND_xxx values with this macro. 137 // 138 #define EFI_TEXT_ATTR(Foreground,Background) ((Foreground) | ((Background) << 4)) 128 139 129 140 #define EFI_BACKGROUND_BLACK 0x00 … … 150 161 151 162 @param This The protocol instance pointer. 152 @param ExtendedVerification Driver may perform more exhaustive ver fication163 @param ExtendedVerification Driver may perform more exhaustive verification 153 164 operation of the device during reset. 154 165
Note:
See TracChangeset
for help on using the changeset viewer.