Leaked source code of windows server 2003
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.

30 lines
798 B

  1. /********************************************************************/
  2. /** Microsoft LAN Manager **/
  3. /** Copyright(c) Microsoft Corp., 1990-2000 **/
  4. /********************************************************************/
  5. /* :ts=4 */
  6. //*** ipstatus.h - IP Status header.
  7. //
  8. // This module contains private IPStatus definitions.
  9. //
  10. #pragma once
  11. typedef struct _PendingIPEvent {
  12. LIST_ENTRY Linkage;
  13. IP_GET_IP_EVENT_RESPONSE evBuf;
  14. } PendingIPEvent;
  15. NTSTATUS
  16. IPGetIPEventEx(
  17. PIRP Irp,
  18. IN PIO_STACK_LOCATION IrpSp
  19. );
  20. typedef struct _NetPnPEventReserved {
  21. Interface *Interface;
  22. NDIS_STATUS PnPStatus;
  23. } NetPnPEventReserved, *PNetPnPEventReserved;