mirror of https://github.com/acidanthera/audk.git
Fix function header
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7099 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9a3293ac5c
commit
c3a78fc8f9
|
@ -128,18 +128,18 @@ BOOLEAN
|
||||||
|
|
||||||
@param Controller The controller that has the UDP service binding
|
@param Controller The controller that has the UDP service binding
|
||||||
protocol installed.
|
protocol installed.
|
||||||
@param ImageHandle The image handle for the driver.
|
@param Image The image handle for the driver.
|
||||||
@param Configure The function to configure the created UDP child
|
@param Configure The function to configure the created UDP child
|
||||||
@param Context The opaque parameter for the Configure funtion.
|
@param Context The opaque parameter for the Configure funtion.
|
||||||
|
|
||||||
@return A point to just created UDP IO port or NULL if failed.
|
@return A point to just created UDP IO port or NULL if some error happened.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UDP_IO_PORT *
|
UDP_IO_PORT *
|
||||||
EFIAPI
|
EFIAPI
|
||||||
UdpIoCreatePort (
|
UdpIoCreatePort (
|
||||||
IN EFI_HANDLE Controller,
|
IN EFI_HANDLE Controller,
|
||||||
IN EFI_HANDLE ImageHandle,
|
IN EFI_HANDLE Image,
|
||||||
IN UDP_IO_CONFIG Configure,
|
IN UDP_IO_CONFIG Configure,
|
||||||
IN VOID *Context
|
IN VOID *Context
|
||||||
);
|
);
|
||||||
|
@ -166,8 +166,6 @@ UdpIoFreePort (
|
||||||
|
|
||||||
@param UdpIo UDP IO port to clean up.
|
@param UdpIo UDP IO port to clean up.
|
||||||
|
|
||||||
@return None
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
@ -208,8 +206,6 @@ UdpIoSendDatagram (
|
||||||
@param UdpIo The UDP IO port to cancel the packet from
|
@param UdpIo The UDP IO port to cancel the packet from
|
||||||
@param Packet The packet to cancel
|
@param Packet The packet to cancel
|
||||||
|
|
||||||
@return None
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
|
Loading…
Reference in New Issue