diff options
author | jgong5 <jgong5@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-29 03:49:50 +0000 |
---|---|---|
committer | jgong5 <jgong5@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-29 03:49:50 +0000 |
commit | ca9d3a9dedfc5f19d574f29bae062e9bef33bb99 (patch) | |
tree | 1436853d2dd74c10aa0710942e85324ada015bbb /MdeModulePkg/Include/Library/UdpIoLib.h | |
parent | b9008c87ebabcdd2bde1b8a7fd6497a8bbb20b1e (diff) | |
download | edk2-platforms-ca9d3a9dedfc5f19d574f29bae062e9bef33bb99.tar.xz |
Add () after function name so that Doxygen can create reference in doc.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7145 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include/Library/UdpIoLib.h')
-rw-r--r-- | MdeModulePkg/Include/Library/UdpIoLib.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/MdeModulePkg/Include/Library/UdpIoLib.h b/MdeModulePkg/Include/Library/UdpIoLib.h index 1837e309a2..1562d866d5 100644 --- a/MdeModulePkg/Include/Library/UdpIoLib.h +++ b/MdeModulePkg/Include/Library/UdpIoLib.h @@ -46,15 +46,15 @@ typedef struct { Prototype called when receiving or sending packets from/to a UDP point.
This prototype is used by both receive and sending when calling
- UdpIoRecvDatagram or UdpIoSendDatagram. When receiving, Netbuf is allocated by
+ UdpIoRecvDatagram() or UdpIoSendDatagram(). When receiving, Netbuf is allocated by
UDP access point, and released by user. When sending, the NetBuf is from user,
and provided to the callback as a reference.
@param Packet Packet received or sent
@param Points The Udp4 address pair corresponds to the Udp4 IO
@param IoStatus Packet receiving or sending status
- @param Context User-defined data when calling UdpIoRecvDatagram or
- UdpIoSendDatagram
+ @param Context User-defined data when calling UdpIoRecvDatagram() or
+ UdpIoSendDatagram()
@return None
**/
@@ -138,14 +138,14 @@ struct _UDP_IO_PORT { /**
Prototype called when UdpIo Library configures a Udp4 instance.
- The prototype is set and called when creating a UDP_IO_PORT in UdpIoCreatePort.
+ The prototype is set and called when creating a UDP_IO_PORT in UdpIoCreatePort().
@param UdpIo The UDP_IO_PORT to configure
- @param Context User-defined data when calling UdpIoCreatePort
+ @param Context User-defined data when calling UdpIoCreatePort()
@retval EFI_SUCCESS The configure process succeeds
@retval Others The UDP_IO_PORT fails to configure indicating
- UdpIoCreatePort should fail
+ UdpIoCreatePort() should fail
**/
typedef
EFI_STATUS
@@ -158,7 +158,7 @@ EFI_STATUS The select function to decide whether to cancel the UDP_TX_TOKEN. It is used
@param Token The UDP_TX_TOKEN to decide whether to cancel
- @param Context User-defined data in UdpIoCancelDgrams
+ @param Context User-defined data in UdpIoCancelDgrams()
@retval TRUE To cancel the UDP_TX_TOKEN
@retval FALSE Do not cancel this UDP_TX_TOKEN
|