De-Unicode in MdePkg source files.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6795 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8 2008-12-01 14:13:51 +00:00
parent cd2ed84a47
commit ff7630cc70
2 changed files with 4 additions and 4 deletions

View File

@ -691,7 +691,7 @@ EFI_STATUS
this function after collection process completes. this function after collection process completes.
@retval EFI_NO_MAPPING The default station address is not available yet. @retval EFI_NO_MAPPING The default station address is not available yet.
@retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated. @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
@retval EFI_UNSUPPORTED The implementation doesnt support this function @retval EFI_UNSUPPORTED The implementation doesn't support this function
@retval Others Some other unexpected error occurred. @retval Others Some other unexpected error occurred.
**/ **/
@ -707,11 +707,11 @@ EFI_STATUS
Parses the packed DHCP option data. Parses the packed DHCP option data.
The Parse() function is used to retrieve the option list from a DHCP packet. The Parse() function is used to retrieve the option list from a DHCP packet.
If *OptionCount isnt zero, and there is enough space for all the DHCP options If *OptionCount isn't zero, and there is enough space for all the DHCP options
in the Packet, each element of PacketOptionList is set to point to somewhere in in the Packet, each element of PacketOptionList is set to point to somewhere in
the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported, the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,
the caller should reassemble the parsed DHCP options to get the finial result. the caller should reassemble the parsed DHCP options to get the finial result.
If *OptionCount is zero or there isnt enough space for all of them, the number If *OptionCount is zero or there isn't enough space for all of them, the number
of DHCP options in the Packet is returned in OptionCount. of DHCP options in the Packet is returned in OptionCount.
@param This Pointer to the EFI_DHCP4_PROTOCOL instance. @param This Pointer to the EFI_DHCP4_PROTOCOL instance.

View File

@ -101,7 +101,7 @@ EFI_STATUS
1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this
same driver's Start() function. same driver's Start() function.
2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid
EFI_HANDLE. In addition, all of these handles must have been created in this drivers EFI_HANDLE. In addition, all of these handles must have been created in this driver's
Start() function, and the Start() function must have called OpenProtocol() on Start() function, and the Start() function must have called OpenProtocol() on
ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER. ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.