mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
997 B
77 lines
997 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
rom.c
|
|
|
|
Abstract:
|
|
|
|
Boot loader ROM routines.
|
|
|
|
Author:
|
|
|
|
Chuck Lenzmeier (chuckl) December 27, 1996
|
|
|
|
Revision History:
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
VOID
|
|
RomSetReceiveStatus (
|
|
IN USHORT UnicastUdpDestinationPort
|
|
#if 0
|
|
,
|
|
IN USHORT MulticastUdpDestinationPort,
|
|
IN ULONG MulticastUdpDestinationAddress,
|
|
IN USHORT MulticastUdpSourcePort,
|
|
IN ULONG MulticastUdpSourceAddress
|
|
#endif
|
|
)
|
|
{
|
|
return;
|
|
|
|
} // RomSetReceiveStatus
|
|
|
|
|
|
ULONG
|
|
RomSendUdpPacket (
|
|
IN PVOID Buffer,
|
|
IN ULONG Length,
|
|
IN ULONG RemoteHost,
|
|
IN USHORT RemotePort
|
|
)
|
|
{
|
|
return 0;
|
|
|
|
} // RomSendUdpPacket
|
|
|
|
|
|
ULONG
|
|
RomReceiveUdpPacket (
|
|
IN PVOID Buffer,
|
|
IN ULONG Length,
|
|
IN ULONG Timeout,
|
|
OUT PULONG RemoteHost,
|
|
OUT PUSHORT RemotePort
|
|
)
|
|
{
|
|
return 0;
|
|
|
|
} // RomReceiveUdpPacket
|
|
|
|
|
|
ULONG
|
|
RomGetNicType (
|
|
OUT t_PXENV_UNDI_GET_NIC_TYPE *NicType
|
|
)
|
|
{
|
|
return 0;
|
|
}
|