diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 06:12:08 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 06:12:08 +0000 |
commit | 01aef47bbe11b3961da5136b064d947540a38060 (patch) | |
tree | 7955cd56359ba1a460f1bb2c7f856486d6228897 /MdePkg/Include/Library/BaseLib.h | |
parent | 7459094d5f6904a0c8445d97519f4a99b654ef43 (diff) | |
download | edk2-platforms-01aef47bbe11b3961da5136b064d947540a38060.tar.xz |
Fix missing include header file and fix typo in comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5110 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/BaseLib.h')
-rw-r--r-- | MdePkg/Include/Library/BaseLib.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Library/BaseLib.h b/MdePkg/Include/Library/BaseLib.h index ae14cc72ea..cf337b7190 100644 --- a/MdePkg/Include/Library/BaseLib.h +++ b/MdePkg/Include/Library/BaseLib.h @@ -2064,7 +2064,7 @@ DivS64x64Remainder ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 16-bit value that may be unaligned. + @param Uint16 Pointer to a 16-bit value that may be unaligned. @return *Uint16 @@ -2085,7 +2085,7 @@ ReadUnaligned16 ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 16-bit value that may be unaligned. + @param Uint16 Pointer to a 16-bit value that may be unaligned. @param Value 16-bit value to write to Buffer. @return Value @@ -2150,7 +2150,7 @@ WriteUnaligned24 ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 32-bit value that may be unaligned. + @param Uint32 Pointer to a 32-bit value that may be unaligned. @return *Uint32 @@ -2171,7 +2171,7 @@ ReadUnaligned32 ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 32-bit value that may be unaligned. + @param Uint32 Pointer to a 32-bit value that may be unaligned. @param Value 32-bit value to write to Buffer. @return Value @@ -2193,7 +2193,7 @@ WriteUnaligned32 ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 64-bit value that may be unaligned. + @param Uint64 Pointer to a 64-bit value that may be unaligned. @return *Uint64 @@ -2214,7 +2214,7 @@ ReadUnaligned64 ( If the Buffer is NULL, then ASSERT(). - @param Buffer Pointer to a 64-bit value that may be unaligned. + @param Uint64 Pointer to a 64-bit value that may be unaligned. @param Value 64-bit value to write to Buffer. @return Value |