]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/SetupBrowserDxe/Print.h
Correct all header files for doxygen format and correct the license issue for VgaClas...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / SetupBrowserDxe / Print.h
1 /**@file
2
3 Private data for Print.c
4
5 Copyright (c) 2006, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _PRINT_H_
17 #define _PRINT_H_
18
19 #include "Setup.h"
20
21 #define LEFT_JUSTIFY 0x01
22 #define PREFIX_SIGN 0x02
23 #define PREFIX_BLANK 0x04
24 #define COMMA_TYPE 0x08
25 #define LONG_TYPE 0x10
26 #define PREFIX_ZERO 0x20
27
28 //
29 // Largest number of characters that can be printed out.
30 //
31 #define EFI_DRIVER_LIB_MAX_PRINT_BUFFER (80 * 4)
32
33 #endif