Changeset 33540 in vbox for trunk/src/VBox/Devices/EFI/tools/include/Common
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/tools/include/Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/tools/include/Common/BaseTypes.h
r23119 r33540 27 27 28 28 // 29 // Modifiers to abs ract standard types to aid in debug of problems29 // Modifiers to abstract standard types to aid in debug of problems 30 30 // 31 31 #define CONST const … … 40 40 // 41 41 // Some other envirnments use this construct, so #ifndef to prevent 42 // mul itple definition.42 // multiple definition. 43 43 // 44 44 #define IN … … 53 53 // 54 54 // BugBug: UEFI specification claims 1 and 0. We are concerned about the 55 // comp lier portability so we did it this way.55 // compiler portability so we did it this way. 56 56 // 57 57 #define TRUE ((BOOLEAN)(1==1)) … … 70 70 // 71 71 // Since we are using the ANSI standard we used the standard nameing and 72 // did not fol ow the coding convention72 // did not follow the coding convention 73 73 // 74 74 // VA_LIST - typedef for argument list. 75 75 // VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use. 76 76 // VA_END (VA_LIST Marker) - Clear Marker 77 // VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argum net from77 // VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argument from 78 78 // the ... list. You must know the size and pass it in this macro. 79 79 // … … 137 137 138 138 /// 139 /// ALIGN_POINTER - aligns a pointer to the lowest bound ry139 /// ALIGN_POINTER - aligns a pointer to the lowest boundary 140 140 /// 141 141 #define ALIGN_POINTER(p, s) ((VOID *) ((UINTN)(p) + (((s) - ((UINTN) (p))) & ((s) - 1)))) 142 142 143 143 /// 144 /// ALIGN_VARIABLE - aligns a variable up to the next natural bound ry for int size of a processor144 /// ALIGN_VARIABLE - aligns a variable up to the next natural boundary for int size of a processor 145 145 /// 146 146 #define ALIGN_VARIABLE(Value, Adjustment) \ -
trunk/src/VBox/Devices/EFI/tools/include/Common/PiFirmwareFile.h
r23119 r33540 211 211 212 212 // 213 // Leaf section which con stains the position-independent-code image.213 // Leaf section which contains the position-independent-code image. 214 214 // 215 215 typedef EFI_COMMON_SECTION_HEADER EFI_TE_SECTION; -
trunk/src/VBox/Devices/EFI/tools/include/Common/UefiBaseTypes.h
r23119 r33540 22 22 23 23 // 24 // Basic aldata type definitions introduced in UEFI.24 // Basic data type definitions introduced in UEFI. 25 25 // 26 26 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.