Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/PrintLib.h
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/PrintLib.h
r48674 r58459 3 3 Unicode and ASCII strings are supported. 4 4 5 Copyright (c) 2006 - 201 1, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> 6 6 This program and the accompanying materials are licensed and made available under 7 7 the terms and conditions of the BSD License that accompanies this distribution. … … 47 47 If 0 is also specified, then 0 is ignored. 48 48 - L, l 49 - The number being printed is aUINT64. Only valid for types X, x, and d.50 If this flag is not specified, then the number being printed is aint.49 - The number being printed is size UINT64. Only valid for types X, x, and d. 50 If this flag is not specified, then the number being printed is size int. 51 51 - NOTE: All invalid flags are ignored. 52 52 … … 79 79 using this type too by making sure bits 8..15 of the argument are set to 0. 80 80 - x 81 - The argument is a hexadecimal number. The characters used are 0..9 and81 - The argument is an unsigned hexadecimal number. The characters used are 0..9 and 82 82 A..F. If the flag 'L' is not specified, then the argument is assumed 83 to be anint. This does not follow ANSI C.83 to be size int. This does not follow ANSI C. 84 84 - X 85 - The argument is a hexadecimal number and the number is padded with85 - The argument is an unsigned hexadecimal number and the number is padded with 86 86 zeros. This is equivalent to a format string of "0x". If the flag 87 'L' is not specified, then the argument is assumed to be anint.87 'L' is not specified, then the argument is assumed to be size int. 88 88 This does not follow ANSI C. 89 89 - d 90 - The argument is a decimal number. If the flag 'L' is not specified,91 then the argument is assumed to be anint.90 - The argument is a signed decimal number. If the flag 'L' is not specified, 91 then the argument is assumed to be size int. 92 92 - p 93 - The argument is a pointer that is a (VOID *), and it is printed as a 94 hexadecimal number The characters used are 0..9 and A..F.93 - The argument is a pointer that is a (VOID *), and it is printed as an 94 unsigned hexadecimal number The characters used are 0..9 and A..F. 95 95 - a 96 96 - The argument is a pointer to an ASCII string.
Note:
See TracChangeset
for help on using the changeset viewer.