VirtualBox

Ignore:
Timestamp:
Oct 28, 2010 9:27:05 AM (14 years ago)
Author:
vboxsync
Message:

*: spelling fixes, thanks Timeless!

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  
    2727
    2828//
    29 // Modifiers to absract standard types to aid in debug of problems
     29// Modifiers to abstract standard types to aid in debug of problems
    3030//
    3131#define CONST     const
     
    4040//
    4141// Some other envirnments use this construct, so #ifndef to prevent
    42 // mulitple definition.
     42// multiple definition.
    4343//
    4444#define IN
     
    5353//
    5454// BugBug: UEFI specification claims 1 and 0. We are concerned about the
    55 //  complier portability so we did it this way.
     55//  compiler portability so we did it this way.
    5656//
    5757#define TRUE  ((BOOLEAN)(1==1))
     
    7070// 
    7171//  Since we are using the ANSI standard we used the standard nameing and
    72 //  did not folow the coding convention
     72//  did not follow the coding convention
    7373//
    7474//  VA_LIST  - typedef for argument list.
    7575//  VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use.
    7676//  VA_END (VA_LIST Marker) - Clear Marker
    77 //  VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argumnet from
     77//  VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argument from
    7878//    the ... list. You must know the size and pass it in this macro.
    7979//
     
    137137
    138138///
    139 ///  ALIGN_POINTER - aligns a pointer to the lowest boundry
     139///  ALIGN_POINTER - aligns a pointer to the lowest boundary
    140140///
    141141#define ALIGN_POINTER(p, s) ((VOID *) ((UINTN)(p) + (((s) - ((UINTN) (p))) & ((s) - 1))))
    142142
    143143///
    144 ///  ALIGN_VARIABLE - aligns a variable up to the next natural boundry for int size of a processor
     144///  ALIGN_VARIABLE - aligns a variable up to the next natural boundary for int size of a processor
    145145///
    146146#define ALIGN_VARIABLE(Value, Adjustment) \
  • trunk/src/VBox/Devices/EFI/tools/include/Common/PiFirmwareFile.h

    r23119 r33540  
    211211
    212212//
    213 // Leaf section which constains the position-independent-code image.
     213// Leaf section which contains the position-independent-code image.
    214214//
    215215typedef EFI_COMMON_SECTION_HEADER EFI_TE_SECTION;
  • trunk/src/VBox/Devices/EFI/tools/include/Common/UefiBaseTypes.h

    r23119 r33540  
    2222
    2323//
    24 // Basical data type definitions introduced in UEFI.
     24// Basic data type definitions introduced in UEFI.
    2525//
    2626typedef struct {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette