]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Remove the unnecessary include, such as PiDxe.h, PiPei.h, Base.h and Uefi.h in header...
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 14 Oct 2008 15:34:00 +0000 (15:34 +0000)
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 14 Oct 2008 15:34:00 +0000 (15:34 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6111 6f19259b-4bc3-4df7-8a09-765794883524

MdeModulePkg/Include/Library/DpcLib.h
MdeModulePkg/Include/Library/GenericBdsLib.h
MdeModulePkg/Include/Library/IpIoLib.h
MdeModulePkg/Include/Library/NetLib.h
MdeModulePkg/Include/Library/PlatDriOverLib.h
MdeModulePkg/Include/Library/PlatformBdsLib.h
MdeModulePkg/Include/Library/UdpIoLib.h
MdeModulePkg/Library/GraphicsLib/Graphics.c
MdeModulePkg/Universal/Network/IScsiDxe/IScsiImpl.h
MdeModulePkg/Universal/Network/Ip4ConfigDxe/NicIp4Variable.c
MdeModulePkg/Universal/Network/MnpDxe/MnpIo.c

index dce2ec21ef1d3884f4895504ba98b47122741268..ee4705b7e4b07977c6a0f73cd8937176c5b9fa1b 100644 (file)
@@ -22,7 +22,6 @@ Abstract:
 #ifndef _DPC_LIB_H_\r
 #define _DPC_LIB_H_\r
 \r
 #ifndef _DPC_LIB_H_\r
 #define _DPC_LIB_H_\r
 \r
-#include <PiDxe.h>\r
 #include <Protocol/Dpc.h>\r
 \r
 /**\r
 #include <Protocol/Dpc.h>\r
 \r
 /**\r
index 654271dff60422427365d247fc9c6184a2aa1df6..76b7f9484f476667ec274a319a24df21ff316cfc 100644 (file)
@@ -15,7 +15,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef _GENERIC_BDS_LIB_H_\r
 #define _GENERIC_BDS_LIB_H_\r
 \r
 #ifndef _GENERIC_BDS_LIB_H_\r
 #define _GENERIC_BDS_LIB_H_\r
 \r
-#include <PiDxe.h>\r
 #include <Protocol/HiiDatabase.h>\r
 #include <IndustryStandard/PeImage.h>\r
 \r
 #include <Protocol/HiiDatabase.h>\r
 #include <IndustryStandard/PeImage.h>\r
 \r
index 640e5f7b49c3070dd13a3ebbf26df9ff0eac3da5..19f86799efb66808f4da393a7d2dfb9904943998 100644 (file)
@@ -1,5 +1,5 @@
 /** @file
 /** @file
-  This library provides IpIo layer upon EFI IP4 Protocol.\r
+  This library provides IpIo layer upon EFI IP4 Protocol.
 
 Copyright (c) 2005 - 2008, Intel Corporation
 All rights reserved. This program and the accompanying materials
 
 Copyright (c) 2005 - 2008, Intel Corporation
 All rights reserved. This program and the accompanying materials
@@ -15,56 +15,55 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef _IP_IO_H_
 #define _IP_IO_H_
 
 #ifndef _IP_IO_H_
 #define _IP_IO_H_
 
-#include <PiDxe.h>
-#include <Protocol/Ip4.h>\r
-#include <Library/IpIoLib.h>\r
+#include <Protocol/Ip4.h>
+#include <Library/IpIoLib.h>
 #include <Library/NetLib.h>
 
 #include <Library/NetLib.h>
 
-//\r
-// type and code define for ICMP protocol error got\r
-// from IP\r
-//\r
-#define ICMP_TYPE_UNREACH              3\r
-#define ICMP_TYPE_TIMXCEED            11\r
-#define ICMP_TYPE_PARAMPROB            12\r
-#define ICMP_TYPE_SOURCEQUENCH         4\r
-\r
-#define ICMP_CODE_UNREACH_NET          0\r
-#define ICMP_CODE_UNREACH_HOST         1\r
-#define ICMP_CODE_UNREACH_PROTOCOL     2\r
-#define ICMP_CODE_UNREACH_PORT         3\r
-#define ICMP_CODE_UNREACH_NEEDFRAG     4\r
-#define ICMP_CODE_UNREACH_SRCFAIL      5\r
-#define ICMP_CODE_UNREACH_NET_UNKNOWN  6\r
-#define ICMP_CODE_UNREACH_HOST_UNKNOWN 7\r
-#define ICMP_CODE_UNREACH_ISOLATED     8\r
-#define ICMP_CODE_UNREACH_NET_PROHIB   9\r
-#define ICMP_CODE_UNREACH_HOST_PROHIB  10\r
-#define ICMP_CODE_UNREACH_TOSNET       11\r
-#define ICMP_CODE_UNREACH_TOSHOST      12\r
-\r
-//\r
-// this error will be delivered to the\r
-// listening transportation layer protocol\r
-// consuming IpIO\r
-//\r
-typedef enum {\r
-  ICMP_ERR_UNREACH_NET      = 0,\r
-  ICMP_ERR_UNREACH_HOST,\r
-  ICMP_ERR_UNREACH_PROTOCOL,\r
-  ICMP_ERR_UNREACH_PORT,\r
-  ICMP_ERR_MSGSIZE,\r
-  ICMP_ERR_UNREACH_SRCFAIL,\r
-  ICMP_ERR_TIMXCEED_INTRANS,\r
-  ICMP_ERR_TIMXCEED_REASS,\r
-  ICMP_ERR_QUENCH,\r
-  ICMP_ERR_PARAMPROB\r
-} ICMP_ERROR;\r
-\r
-typedef struct _ICMP_ERROR_INFO {\r
-  BOOLEAN     IsHard;\r
-  BOOLEAN     Notify;\r
-} ICMP_ERROR_INFO;\r
+//
+// type and code define for ICMP protocol error got
+// from IP
+//
+#define ICMP_TYPE_UNREACH              3
+#define ICMP_TYPE_TIMXCEED            11
+#define ICMP_TYPE_PARAMPROB            12
+#define ICMP_TYPE_SOURCEQUENCH         4
+
+#define ICMP_CODE_UNREACH_NET          0
+#define ICMP_CODE_UNREACH_HOST         1
+#define ICMP_CODE_UNREACH_PROTOCOL     2
+#define ICMP_CODE_UNREACH_PORT         3
+#define ICMP_CODE_UNREACH_NEEDFRAG     4
+#define ICMP_CODE_UNREACH_SRCFAIL      5
+#define ICMP_CODE_UNREACH_NET_UNKNOWN  6
+#define ICMP_CODE_UNREACH_HOST_UNKNOWN 7
+#define ICMP_CODE_UNREACH_ISOLATED     8
+#define ICMP_CODE_UNREACH_NET_PROHIB   9
+#define ICMP_CODE_UNREACH_HOST_PROHIB  10
+#define ICMP_CODE_UNREACH_TOSNET       11
+#define ICMP_CODE_UNREACH_TOSHOST      12
+
+//
+// this error will be delivered to the
+// listening transportation layer protocol
+// consuming IpIO
+//
+typedef enum {
+  ICMP_ERR_UNREACH_NET      = 0,
+  ICMP_ERR_UNREACH_HOST,
+  ICMP_ERR_UNREACH_PROTOCOL,
+  ICMP_ERR_UNREACH_PORT,
+  ICMP_ERR_MSGSIZE,
+  ICMP_ERR_UNREACH_SRCFAIL,
+  ICMP_ERR_TIMXCEED_INTRANS,
+  ICMP_ERR_TIMXCEED_REASS,
+  ICMP_ERR_QUENCH,
+  ICMP_ERR_PARAMPROB
+} ICMP_ERROR;
+
+typedef struct _ICMP_ERROR_INFO {
+  BOOLEAN     IsHard;
+  BOOLEAN     Notify;
+} ICMP_ERROR_INFO;
 
 #define EFI_IP4_HEADER_LEN(HdrPtr) ((HdrPtr)->HeaderLength << 2)
 
 
 #define EFI_IP4_HEADER_LEN(HdrPtr) ((HdrPtr)->HeaderLength << 2)
 
@@ -170,15 +169,15 @@ typedef struct _IP_IO_IP_INFO {
   INTN                      RefCnt;
 } IP_IO_IP_INFO;
 
   INTN                      RefCnt;
 } IP_IO_IP_INFO;
 
-/**\r
-  Create a new IP_IO instance.\r
-\r
-  @param  Image                 The image handle of an IP_IO consumer protocol.\r
-  @param  Controller            The controller handle of an IP_IO consumer protocol\r
-                                installed on.\r
-\r
-  @return Pointer to a newly created IP_IO instance.\r
-\r
+/**
+  Create a new IP_IO instance.
+
+  @param  Image                 The image handle of an IP_IO consumer protocol.
+  @param  Controller            The controller handle of an IP_IO consumer protocol
+                                installed on.
+
+  @return Pointer to a newly created IP_IO instance.
+
 **/
 IP_IO *
 EFIAPI
 **/
 IP_IO *
 EFIAPI
@@ -187,15 +186,15 @@ IpIoCreate (
   IN EFI_HANDLE Controller
   );
 
   IN EFI_HANDLE Controller
   );
 
-/**\r
-  Destroy an IP_IO instance.\r
-\r
-  @param  IpIo                  Pointer to the IP_IO instance that needs to\r
-                                destroy.\r
-\r
-  @retval EFI_SUCCESS           The IP_IO instance destroyed successfully.\r
-  @retval other                 Error condition occurred.\r
-\r
+/**
+  Destroy an IP_IO instance.
+
+  @param  IpIo                  Pointer to the IP_IO instance that needs to
+                                destroy.
+
+  @retval EFI_SUCCESS           The IP_IO instance destroyed successfully.
+  @retval other                 Error condition occurred.
+
 **/
 EFI_STATUS
 EFIAPI
 **/
 EFI_STATUS
 EFIAPI
@@ -203,14 +202,14 @@ IpIoDestroy (
   IN IP_IO *IpIo
   );
 
   IN IP_IO *IpIo
   );
 
-/**\r
-  Stop an IP_IO instance.\r
-\r
-  @param  IpIo                  Pointer to the IP_IO instance that needs to stop.\r
-\r
-  @retval EFI_SUCCESS           The IP_IO instance stopped successfully.\r
-  @retval other                 Error condition occurred.\r
-\r
+/**
+  Stop an IP_IO instance.
+
+  @param  IpIo                  Pointer to the IP_IO instance that needs to stop.
+
+  @retval EFI_SUCCESS           The IP_IO instance stopped successfully.
+  @retval other                 Error condition occurred.
+
 **/
 EFI_STATUS
 EFIAPI
 **/
 EFI_STATUS
 EFIAPI
@@ -218,16 +217,16 @@ IpIoStop (
   IN IP_IO *IpIo
   );
 
   IN IP_IO *IpIo
   );
 
-/**\r
-  Open an IP_IO instance for use.\r
-\r
-  @param  IpIo                  Pointer to an IP_IO instance that needs to open.\r
-  @param  OpenData              The configuration data for the IP_IO instance.\r
-\r
-  @retval EFI_SUCCESS           The IP_IO instance opened with OpenData\r
-                                successfully.\r
-  @retval other                 Error condition occurred.\r
-\r
+/**
+  Open an IP_IO instance for use.
+
+  @param  IpIo                  Pointer to an IP_IO instance that needs to open.
+  @param  OpenData              The configuration data for the IP_IO instance.
+
+  @retval EFI_SUCCESS           The IP_IO instance opened with OpenData
+                                successfully.
+  @retval other                 Error condition occurred.
+
 **/
 EFI_STATUS
 IpIoOpen (
 **/
 EFI_STATUS
 IpIoOpen (
@@ -235,23 +234,23 @@ IpIoOpen (
   IN IP_IO_OPEN_DATA *OpenData
   );
 
   IN IP_IO_OPEN_DATA *OpenData
   );
 
-/**\r
-  Send out an IP packet.\r
-\r
-  @param  IpIo                  Pointer to an IP_IO instance used for sending IP\r
-                                packet.\r
-  @param  Pkt                   Pointer to the IP packet to be sent.\r
-  @param  Sender                The IP protocol instance used for sending.\r
+/**
+  Send out an IP packet.
+
+  @param  IpIo                  Pointer to an IP_IO instance used for sending IP
+                                packet.
+  @param  Pkt                   Pointer to the IP packet to be sent.
+  @param  Sender                The IP protocol instance used for sending.
   @param  Context               
   @param  Context               
-  @param  NotifyData            \r
-  @param  Dest                  The destination IP address to send this packet to.\r
-  @param  OverrideData          The data to override some configuration of the IP\r
-                                instance used for sending.\r
-\r
-  @retval EFI_SUCCESS           The operation is completed successfully.\r
-  @retval EFI_NOT_STARTED       The IpIo is not configured.\r
-  @retval EFI_OUT_OF_RESOURCES  Failed due to resource limit.\r
-\r
+  @param  NotifyData            
+  @param  Dest                  The destination IP address to send this packet to.
+  @param  OverrideData          The data to override some configuration of the IP
+                                instance used for sending.
+
+  @retval EFI_SUCCESS           The operation is completed successfully.
+  @retval EFI_NOT_STARTED       The IpIo is not configured.
+  @retval EFI_OUT_OF_RESOURCES  Failed due to resource limit.
+
 **/
 EFI_STATUS
 EFIAPI
 **/
 EFI_STATUS
 EFIAPI
@@ -265,11 +264,11 @@ IpIoSend (
   IN IP_IO_OVERRIDE  *OverrideData
   );
 
   IN IP_IO_OVERRIDE  *OverrideData
   );
 
-/**\r
-  Cancel the IP transmit token which wraps this Packet.\r
-\r
-  @param  IpIo                  Pointer to the IP_IO instance.\r
-  @param  Packet                Pointer to the packet to cancel.\r
+/**
+  Cancel the IP transmit token which wraps this Packet.
+
+  @param  IpIo                  Pointer to the IP_IO instance.
+  @param  Packet                Pointer to the packet to cancel.
 
 **/
 VOID
 
 **/
 VOID
@@ -279,14 +278,14 @@ IpIoCancelTxToken (
   IN VOID   *Packet
   );
 
   IN VOID   *Packet
   );
 
-/**\r
-  Add a new IP instance for sending data.\r
-\r
-  @param  IpIo                  Pointer to a IP_IO instance to add a new IP\r
-                                instance for sending purpose.\r
-\r
-  @return Pointer to the created IP_IO_IP_INFO structure, NULL is failed.\r
-\r
+/**
+  Add a new IP instance for sending data.
+
+  @param  IpIo                  Pointer to a IP_IO instance to add a new IP
+                                instance for sending purpose.
+
+  @return Pointer to the created IP_IO_IP_INFO structure, NULL is failed.
+
 **/
 IP_IO_IP_INFO *
 EFIAPI
 **/
 IP_IO_IP_INFO *
 EFIAPI
@@ -294,20 +293,20 @@ IpIoAddIp (
   IN IP_IO  *IpIo
   );
 
   IN IP_IO  *IpIo
   );
 
-/**\r
-  Configure the IP instance of this IpInfo and start the receiving if Ip4ConfigData\r
-  is not NULL.\r
-\r
-  @param  IpInfo                Pointer to the IP_IO_IP_INFO instance.\r
-  @param  Ip4ConfigData         The IP4 configure data used to configure the ip\r
-                                instance, if NULL the ip instance is reseted. If\r
-                                UseDefaultAddress is set to TRUE, and the configure\r
-                                operation succeeds, the default address information\r
-                                is written back in this Ip4ConfigData.\r
-\r
-  @retval EFI_STATUS            The status returned by IP4->Configure or\r
-                                IP4->Receive.\r
-\r
+/**
+  Configure the IP instance of this IpInfo and start the receiving if Ip4ConfigData
+  is not NULL.
+
+  @param  IpInfo                Pointer to the IP_IO_IP_INFO instance.
+  @param  Ip4ConfigData         The IP4 configure data used to configure the ip
+                                instance, if NULL the ip instance is reseted. If
+                                UseDefaultAddress is set to TRUE, and the configure
+                                operation succeeds, the default address information
+                                is written back in this Ip4ConfigData.
+
+  @retval EFI_STATUS            The status returned by IP4->Configure or
+                                IP4->Receive.
+
 **/
 EFI_STATUS
 EFIAPI
 **/
 EFI_STATUS
 EFIAPI
@@ -316,15 +315,15 @@ IpIoConfigIp (
   IN OUT EFI_IP4_CONFIG_DATA  *Ip4ConfigData OPTIONAL
   );
 
   IN OUT EFI_IP4_CONFIG_DATA  *Ip4ConfigData OPTIONAL
   );
 
-/**\r
-  Destroy an IP instance maintained in IpIo->IpList for\r
-  sending purpose.\r
-\r
-  @param  IpIo                  Pointer to the IP_IO instance.\r
-  @param  IpInfo                Pointer to the IpInfo to be removed.\r
-\r
-  @return None.\r
-\r
+/**
+  Destroy an IP instance maintained in IpIo->IpList for
+  sending purpose.
+
+  @param  IpIo                  Pointer to the IP_IO instance.
+  @param  IpInfo                Pointer to the IpInfo to be removed.
+
+  @return None.
+
 **/
 VOID
 EFIAPI
 **/
 VOID
 EFIAPI
@@ -333,16 +332,16 @@ IpIoRemoveIp (
   IN IP_IO_IP_INFO    *IpInfo
   );
 
   IN IP_IO_IP_INFO    *IpInfo
   );
 
-/**\r
-  Find the first IP protocol maintained in IpIo whose local\r
-  address is the same with Src.\r
-\r
-  @param  IpIo                  Pointer to the pointer of the IP_IO instance.\r
-  @param  Src                   The local IP address.\r
-\r
-  @return Pointer to the IP protocol can be used for sending purpose and its local\r
-  @return address is the same with Src.\r
-\r
+/**
+  Find the first IP protocol maintained in IpIo whose local
+  address is the same with Src.
+
+  @param  IpIo                  Pointer to the pointer of the IP_IO instance.
+  @param  Src                   The local IP address.
+
+  @return Pointer to the IP protocol can be used for sending purpose and its local
+  @return address is the same with Src.
+
 **/
 IP_IO_IP_INFO *
 EFIAPI
 **/
 IP_IO_IP_INFO *
 EFIAPI
@@ -351,19 +350,19 @@ IpIoFindSender (
   IN     IP4_ADDR  Src
   );
 
   IN     IP4_ADDR  Src
   );
 
-/**\r
-  Get the ICMP error map information, the ErrorStatus will be returned.\r
-  The IsHard and Notify are optional. If they are not NULL, this rouine will\r
-  fill them.\r
-  We move IcmpErrMap[] to local variable to enable EBC build.\r
-\r
-  @param  IcmpError             IcmpError Type\r
-  @param  IsHard                Whether it is a hard error\r
-  @param  Notify                Whether it need to notify SockError\r
-\r
-  @return ICMP Error Status\r
-\r
-**/\r
+/**
+  Get the ICMP error map information, the ErrorStatus will be returned.
+  The IsHard and Notify are optional. If they are not NULL, this rouine will
+  fill them.
+  We move IcmpErrMap[] to local variable to enable EBC build.
+
+  @param  IcmpError             IcmpError Type
+  @param  IsHard                Whether it is a hard error
+  @param  Notify                Whether it need to notify SockError
+
+  @return ICMP Error Status
+
+**/
 EFI_STATUS
 EFIAPI
 IpIoGetIcmpErrStatus (
 EFI_STATUS
 EFIAPI
 IpIoGetIcmpErrStatus (
index 7cf89a01139dd330188750fb16fadedb7481f5fb..636ec81c0c23ce6d0726900d6f52c32b59f1e0b6 100644 (file)
@@ -15,7 +15,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef _NET_LIB_H_
 #define _NET_LIB_H_
 
 #ifndef _NET_LIB_H_
 #define _NET_LIB_H_
 
-#include <PiDxe.h>
 #include <Library/BaseMemoryLib.h>
 #include <Library/MemoryAllocationLib.h>
 #include <Protocol/DriverBinding.h>
 #include <Library/BaseMemoryLib.h>
 #include <Library/MemoryAllocationLib.h>
 #include <Protocol/DriverBinding.h>
@@ -735,14 +734,14 @@ NetLibDispatchDpc (
   VOID
   );
 
   VOID
   );
 
-/**\r
-  This is the default unload handle for all the network drivers.\r
-\r
-  @param  ImageHandle           The drivers' driver image.\r
-\r
-  @retval EFI_SUCCESS           The image is unloaded.\r
-  @retval Others                Failed to unload the image.\r
-\r
+/**
+  This is the default unload handle for all the network drivers.
+
+  @param  ImageHandle           The drivers' driver image.
+
+  @retval EFI_SUCCESS           The image is unloaded.
+  @retval Others                Failed to unload the image.
+
 **/
 EFI_STATUS
 EFIAPI
 **/
 EFI_STATUS
 EFIAPI
@@ -1266,15 +1265,15 @@ NetbufQueCopy (
   IN UINT8                  *Dest
   );
 
   IN UINT8                  *Dest
   );
 
-/**\r
-  Trim some data from the queue header, release the buffer if\r
-  whole buffer is trimmed.\r
-\r
-  @param  NbufQue               Pointer to the net buffer queue.\r
-  @param  Len                   Length of the data to trim.\r
-\r
-  @retval UINTN                 The length of the data trimmed.\r
-\r
+/**
+  Trim some data from the queue header, release the buffer if
+  whole buffer is trimmed.
+
+  @param  NbufQue               Pointer to the net buffer queue.
+  @param  Len                   Length of the data to trim.
+
+  @retval UINTN                 The length of the data trimmed.
+
 **/
 UINT32
 EFIAPI
 **/
 UINT32
 EFIAPI
index 43d48a4a44fe858128d02b747bec96452d3b038e..91aab5a3cdcab05ad2d2ea6075e5ed1e4fe91be4 100644 (file)
@@ -16,7 +16,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef _PLAT_DRI_OVER_LIB_H_\r
 #define _PLAT_DRI_OVER_LIB_H_\r
 \r
 #ifndef _PLAT_DRI_OVER_LIB_H_\r
 #define _PLAT_DRI_OVER_LIB_H_\r
 \r
-#include <PiDxe.h>\r
 #include <Protocol/PlatformDriverOverride.h>\r
 #include <Protocol/DevicePath.h>\r
 #include <Protocol/DriverBinding.h>\r
 #include <Protocol/PlatformDriverOverride.h>\r
 #include <Protocol/DevicePath.h>\r
 #include <Protocol/DriverBinding.h>\r
index 2fcb310d744883f4f78f96a1b16e5f20153ab9ce..4740d7b68e93ebb100b202823ec74d43546bfee1 100644 (file)
@@ -16,7 +16,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef __PLATFORM_BDS_LIB_H_\r
 #define __PLATFORM_BDS_LIB_H_\r
 \r
 #ifndef __PLATFORM_BDS_LIB_H_\r
 #define __PLATFORM_BDS_LIB_H_\r
 \r
-#include <PiDxe.h>\r
 #include <Protocol/Bds.h>\r
 #include <Protocol/GenericMemoryTest.h>\r
 \r
 #include <Protocol/Bds.h>\r
 #include <Protocol/GenericMemoryTest.h>\r
 \r
index ef64e943dc939549c3383f8ea0c252e79ef3c339..21111728071f59b410e5c523cbaa55f6f8e80740 100644 (file)
@@ -16,8 +16,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef _UDP4IO_H_
 #define _UDP4IO_H_
 
 #ifndef _UDP4IO_H_
 #define _UDP4IO_H_
 
-#include <PiDxe.h>
-
 #include <Protocol/Udp4.h>
 
 #include <Library/UdpIoLib.h>
 #include <Protocol/Udp4.h>
 
 #include <Library/UdpIoLib.h>
@@ -204,14 +202,14 @@ UdpIoSendDatagram (
   IN  VOID                  *Context
   );
 
   IN  VOID                  *Context
   );
 
-/**\r
-  Cancel a single sent datagram.\r
-\r
-  @param  UdpIo                 The UDP IO port to cancel the packet from\r
-  @param  Packet                The packet to cancel\r
-\r
-  @return None\r
-\r
+/**
+  Cancel a single sent datagram.
+
+  @param  UdpIo                 The UDP IO port to cancel the packet from
+  @param  Packet                The packet to cancel
+
+  @return None
+
 **/
 VOID
 EFIAPI
 **/
 VOID
 EFIAPI
index 80149b70aff18a2bc30aab0175390c690cc1f009..75aa91dc6c2f1a5e29a55f68428da166816ea409 100644 (file)
@@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 **/\r
 \r
 \r
 **/\r
 \r
 \r
-#include <Uefi.h>\r
+#include <PiDxe.h>\r
 \r
 #include <Protocol/SimpleTextOut.h>\r
 #include <Protocol/OEMBadging.h>\r
 \r
 #include <Protocol/SimpleTextOut.h>\r
 #include <Protocol/OEMBadging.h>\r
index 743857cfefd074875b6e1617933c3ccd4abbbcbe..94ae9fe63fe1d6aff19e891668be632412199ffd 100644 (file)
@@ -22,6 +22,8 @@ Abstract:
 #ifndef _ISCSI_IMPL_H_\r
 #define _ISCSI_IMPL_H_\r
 \r
 #ifndef _ISCSI_IMPL_H_\r
 #define _ISCSI_IMPL_H_\r
 \r
+#include <Uefi.h>\r
+\r
 #include <Library/NetLib.h>\r
 #include <Library/PrintLib.h>\r
 #include <Library/UefiRuntimeServicesTableLib.h>\r
 #include <Library/NetLib.h>\r
 #include <Library/PrintLib.h>\r
 #include <Library/UefiRuntimeServicesTableLib.h>\r
index 72c3a72e2f4b3890b80e55369db8e74e51616b2f..f97c34f4842ffd9ad1817a7973f531f107b9283b 100644 (file)
@@ -20,6 +20,7 @@ Abstract:
 \r
 **/\r
 \r
 \r
 **/\r
 \r
+#include <Uefi.h>\r
 \r
 #include <Library/NetLib.h>\r
 #include <Library/DebugLib.h>\r
 \r
 #include <Library/NetLib.h>\r
 #include <Library/DebugLib.h>\r
index 98b6ddde3b525d533ebb767d47268b28e3916e4b..fc53f0e8daf03452eeb7102e3ff0af11c85ea6fb 100644 (file)
@@ -20,11 +20,11 @@ Abstract:
 \r
 **/\r
 \r
 \r
 **/\r
 \r
+#include "MnpImpl.h"\r
 #include <Library/NetLib.h>\r
 #include <Library/BaseMemoryLib.h>\r
 #include <Library/BaseLib.h>\r
 #include <Library/MemoryAllocationLib.h>\r
 #include <Library/NetLib.h>\r
 #include <Library/BaseMemoryLib.h>\r
 #include <Library/BaseLib.h>\r
 #include <Library/MemoryAllocationLib.h>\r
-#include "MnpImpl.h"\r
 \r
 \r
 /**\r
 \r
 \r
 /**\r