Update comments.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6168 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-10-21 06:55:38 +00:00
parent d531bfee01
commit 0827d304f6
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ InternalMemCopyMem (
VOID * VOID *
EFIAPI EFIAPI
InternalMemSetMem ( InternalMemSetMem (
OUT VOID *Buffer, IN VOID *Buffer,
IN UINTN Length, IN UINTN Length,
IN UINT8 Value IN UINT8 Value
); );

View File

@ -24,7 +24,7 @@
Set Buffer to Value for Size bytes. Set Buffer to Value for Size bytes.
@param Buffer Memory to set. @param Buffer Memory to set.
@param Size Number of bytes to set @param Length Number of bytes to set
@param Value Value of the set operation. @param Value Value of the set operation.
@return Buffer @return Buffer
@ -34,7 +34,7 @@ VOID *
EFIAPI EFIAPI
InternalMemSetMem ( InternalMemSetMem (
IN VOID *Buffer, IN VOID *Buffer,
IN UINTN Size, IN UINTN Length,
IN UINT8 Value IN UINT8 Value
) )
{ {