Update to use DOS format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6341 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1,48 +1,48 @@
|
|||||||
/** @file
|
/** @file
|
||||||
MACRO definitions for color used in Setup Browser.
|
MACRO definitions for color used in Setup Browser.
|
||||||
|
|
||||||
Copyright (c) 2004, Intel Corporation
|
Copyright (c) 2004, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
http://opensource.org/licenses/bsd-license.php
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
//
|
//
|
||||||
// Unicode collation protocol in
|
// Unicode collation protocol in
|
||||||
|
|
||||||
#ifndef _COLORS_H_
|
#ifndef _COLORS_H_
|
||||||
#define _COLORS_H_
|
#define _COLORS_H_
|
||||||
|
|
||||||
//
|
//
|
||||||
// Screen Color Settings
|
// Screen Color Settings
|
||||||
//
|
//
|
||||||
#define PICKLIST_HIGHLIGHT_TEXT EFI_WHITE
|
#define PICKLIST_HIGHLIGHT_TEXT EFI_WHITE
|
||||||
#define PICKLIST_HIGHLIGHT_BACKGROUND EFI_BACKGROUND_CYAN
|
#define PICKLIST_HIGHLIGHT_BACKGROUND EFI_BACKGROUND_CYAN
|
||||||
#define TITLE_TEXT EFI_WHITE
|
#define TITLE_TEXT EFI_WHITE
|
||||||
#define TITLE_BACKGROUND EFI_BACKGROUND_BLUE
|
#define TITLE_BACKGROUND EFI_BACKGROUND_BLUE
|
||||||
#define KEYHELP_TEXT EFI_LIGHTGRAY
|
#define KEYHELP_TEXT EFI_LIGHTGRAY
|
||||||
#define KEYHELP_BACKGROUND EFI_BACKGROUND_BLACK
|
#define KEYHELP_BACKGROUND EFI_BACKGROUND_BLACK
|
||||||
#define SUBTITLE_TEXT EFI_BLUE
|
#define SUBTITLE_TEXT EFI_BLUE
|
||||||
#define SUBTITLE_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
#define SUBTITLE_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
||||||
#define BANNER_TEXT EFI_BLUE
|
#define BANNER_TEXT EFI_BLUE
|
||||||
#define BANNER_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
#define BANNER_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
||||||
#define FIELD_TEXT EFI_BLACK
|
#define FIELD_TEXT EFI_BLACK
|
||||||
#define FIELD_TEXT_GRAYED EFI_DARKGRAY
|
#define FIELD_TEXT_GRAYED EFI_DARKGRAY
|
||||||
#define FIELD_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
#define FIELD_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
||||||
#define FIELD_TEXT_HIGHLIGHT EFI_LIGHTGRAY
|
#define FIELD_TEXT_HIGHLIGHT EFI_LIGHTGRAY
|
||||||
#define FIELD_BACKGROUND_HIGHLIGHT EFI_BACKGROUND_BLACK
|
#define FIELD_BACKGROUND_HIGHLIGHT EFI_BACKGROUND_BLACK
|
||||||
#define POPUP_TEXT EFI_LIGHTGRAY
|
#define POPUP_TEXT EFI_LIGHTGRAY
|
||||||
#define POPUP_BACKGROUND EFI_BACKGROUND_BLUE
|
#define POPUP_BACKGROUND EFI_BACKGROUND_BLUE
|
||||||
#define POPUP_INVERSE_TEXT EFI_LIGHTGRAY
|
#define POPUP_INVERSE_TEXT EFI_LIGHTGRAY
|
||||||
#define POPUP_INVERSE_BACKGROUND EFI_BACKGROUND_BLACK
|
#define POPUP_INVERSE_BACKGROUND EFI_BACKGROUND_BLACK
|
||||||
#define HELP_TEXT EFI_BLUE
|
#define HELP_TEXT EFI_BLUE
|
||||||
#define ERROR_TEXT EFI_RED | EFI_BRIGHT
|
#define ERROR_TEXT EFI_RED | EFI_BRIGHT
|
||||||
#define INFO_TEXT EFI_YELLOW | EFI_BRIGHT
|
#define INFO_TEXT EFI_YELLOW | EFI_BRIGHT
|
||||||
#define ARROW_TEXT EFI_RED | EFI_BRIGHT
|
#define ARROW_TEXT EFI_RED | EFI_BRIGHT
|
||||||
#define ARROW_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
#define ARROW_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,30 +1,30 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Micro definitions data for Print.c
|
Micro definitions data for Print.c
|
||||||
|
|
||||||
Copyright (c) 2004, Intel Corporation
|
Copyright (c) 2004, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
http://opensource.org/licenses/bsd-license.php
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#ifndef _PRINT_H_
|
#ifndef _PRINT_H_
|
||||||
#define _PRINT_H_
|
#define _PRINT_H_
|
||||||
|
|
||||||
#define LEFT_JUSTIFY 0x01
|
#define LEFT_JUSTIFY 0x01
|
||||||
#define PREFIX_SIGN 0x02
|
#define PREFIX_SIGN 0x02
|
||||||
#define PREFIX_BLANK 0x04
|
#define PREFIX_BLANK 0x04
|
||||||
#define COMMA_TYPE 0x08
|
#define COMMA_TYPE 0x08
|
||||||
#define LONG_TYPE 0x10
|
#define LONG_TYPE 0x10
|
||||||
#define PREFIX_ZERO 0x20
|
#define PREFIX_ZERO 0x20
|
||||||
|
|
||||||
//
|
//
|
||||||
// Largest number of characters that can be printed out.
|
// Largest number of characters that can be printed out.
|
||||||
//
|
//
|
||||||
#define EFI_DRIVER_LIB_MAX_PRINT_BUFFER (80 * 4)
|
#define EFI_DRIVER_LIB_MAX_PRINT_BUFFER (80 * 4)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user