mirror of https://github.com/acidanthera/audk.git
edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Option.c:
Comment out unused STATIC function. (TcpPutUint16) git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4828 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
24e58768a0
commit
cf26afe34c
|
@ -33,16 +33,16 @@ TcpGetUint16 (
|
|||
return NTOHS (Value);
|
||||
}
|
||||
|
||||
STATIC
|
||||
VOID
|
||||
TcpPutUint16 (
|
||||
IN UINT8 *Buf,
|
||||
IN UINT16 Data
|
||||
)
|
||||
{
|
||||
Data = HTONS (Data);
|
||||
CopyMem (Buf, &Data, sizeof (UINT16));
|
||||
}
|
||||
// STATIC
|
||||
// VOID
|
||||
// TcpPutUint16 (
|
||||
// IN UINT8 *Buf,
|
||||
// IN UINT16 Data
|
||||
// )
|
||||
// {
|
||||
// Data = HTONS (Data);
|
||||
// CopyMem (Buf, &Data, sizeof (UINT16));
|
||||
// }
|
||||
|
||||
STATIC
|
||||
UINT32
|
||||
|
|
Loading…
Reference in New Issue