Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. rom.c
  5. Abstract:
  6. Boot loader ROM routines.
  7. Author:
  8. Chuck Lenzmeier (chuckl) December 27, 1996
  9. Revision History:
  10. Notes:
  11. --*/
  12. #include "precomp.h"
  13. #pragma hdrstop
  14. VOID
  15. RomSetReceiveStatus (
  16. IN USHORT UnicastUdpDestinationPort
  17. #if 0
  18. ,
  19. IN USHORT MulticastUdpDestinationPort,
  20. IN ULONG MulticastUdpDestinationAddress,
  21. IN USHORT MulticastUdpSourcePort,
  22. IN ULONG MulticastUdpSourceAddress
  23. #endif
  24. )
  25. {
  26. return;
  27. } // RomSetReceiveStatus
  28. ULONG
  29. RomSendUdpPacket (
  30. IN PVOID Buffer,
  31. IN ULONG Length,
  32. IN ULONG RemoteHost,
  33. IN USHORT RemotePort
  34. )
  35. {
  36. return 0;
  37. } // RomSendUdpPacket
  38. ULONG
  39. RomReceiveUdpPacket (
  40. IN PVOID Buffer,
  41. IN ULONG Length,
  42. IN ULONG Timeout,
  43. OUT PULONG RemoteHost,
  44. OUT PUSHORT RemotePort
  45. )
  46. {
  47. return 0;
  48. } // RomReceiveUdpPacket
  49. ULONG
  50. RomGetNicType (
  51. OUT t_PXENV_UNDI_GET_NIC_TYPE *NicType
  52. )
  53. {
  54. return 0;
  55. }