diff options
author | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-12-24 02:20:21 +0000 |
---|---|---|
committer | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-12-24 02:20:21 +0000 |
commit | 6a690e23d7fb7fa710f6816ee23c17dadfe617b6 (patch) | |
tree | 258ae4f715b9edeb6d6b35a10974a77fc7a51352 /MdeModulePkg/Include | |
parent | e3b1115ed8386ccc8b1194d7ad1506b0dde39357 (diff) | |
download | edk2-6a690e23d7fb7fa710f6816ee23c17dadfe617b6.zip edk2-6a690e23d7fb7fa710f6816ee23c17dadfe617b6.tar.gz edk2-6a690e23d7fb7fa710f6816ee23c17dadfe617b6.tar.bz2 |
add iSCSI protocol
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4423 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include')
-rw-r--r-- | MdeModulePkg/Include/Library/NetLib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MdeModulePkg/Include/Library/NetLib.h b/MdeModulePkg/Include/Library/NetLib.h index 4a621e1..e621c24 100644 --- a/MdeModulePkg/Include/Library/NetLib.h +++ b/MdeModulePkg/Include/Library/NetLib.h @@ -24,6 +24,8 @@ Abstract: #define _NET_LIB_H_ #include <PiDxe.h> +#include <Library/BaseMemoryLib.h> +#include <Library/MemoryAllocationLib.h> #include <Protocol/DriverBinding.h> #include <Protocol/ComponentName.h> #include <Protocol/DriverConfiguration.h> @@ -214,6 +216,8 @@ extern EFI_IPv4_ADDRESS mZeroIp4Addr; #define NET_IS_DIGIT(Ch) (('0' <= (Ch)) && ((Ch) <= '9')) #define NET_ROUNDUP(size, unit) (((size) + (unit) - 1) & (~((unit) - 1))) +#define NET_IS_LOWER_CASE_CHAR(Ch) (('a' <= (Ch)) && ((Ch) <= 'z')) +#define NET_IS_UPPER_CASE_CHAR(Ch) (('A' <= (Ch)) && ((Ch) <= 'Z')) // // Wrap functions to ease the impact of EFI library changes. |