diff options
author | niry <niry@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-29 12:58:38 +0000 |
---|---|---|
committer | niry <niry@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-29 12:58:38 +0000 |
commit | 77f00155e3c9331f4d6a6ab204514e394ed98631 (patch) | |
tree | b510849f29c2a88c4e54b6fbb16efadf55221337 /MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c | |
parent | 73e4adbe6852905b72a34055b7019e081e395410 (diff) | |
download | edk2-platforms-77f00155e3c9331f4d6a6ab204514e394ed98631.tar.xz |
Fix the IN OUT modifier for parameters.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7147 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c')
-rw-r--r-- | MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c b/MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c index c075695467..f7b0e99c39 100644 --- a/MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c +++ b/MdeModulePkg/Universal/Network/Tcp4Dxe/SockInterface.c @@ -22,7 +22,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. @param Event The event to be checked.
@retval TRUE The specific Event exists in the List.
- @retval False The specific Event is not in the List.
+ @retval FALSE The specific Event is not in the List.
**/
BOOLEAN
@@ -57,7 +57,8 @@ SockTokenExistedInList ( @param Sock Pointer to the instance's socket.
@param Event The event to be checked.
- @return The specific Event exists in one of socket's lists or not.
+ @retval TRUE The Event exists in related socket's lists.
+ @retval FALSE The Event is not in related socket's lists.
**/
BOOLEAN
@@ -139,7 +140,7 @@ SockBufferToken ( **/
EFI_STATUS
SockDestroyChild (
- IN SOCKET *Sock
+ IN SOCKET *Sock
)
{
EFI_STATUS Status;
|