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.

47 lines
820 B

  1. /*++
  2. Copyright (c) 1989-1997 Microsoft Corporation
  3. Module Name:
  4. ipxpnp.h
  5. Abstract:
  6. This module contains definitions specific to the
  7. IPX module for PnP/PM.
  8. Author:
  9. Shreedhar Madhavapeddi (ShreeM) 24-February-1993
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. --*/
  14. #if defined(_PNP_POWER_)
  15. typedef enum IPX_PNP_PROCESSING_STATE {
  16. NONE_DONE,
  17. SPX_DONE,
  18. NB_DONE,
  19. ALL_DONE
  20. } PnPState;
  21. typedef
  22. struct _NetPnPEventReserved {
  23. NDIS_HANDLE *ProtocolBindingContext;
  24. PTDI_PNP_CONTEXT Context1;
  25. PTDI_PNP_CONTEXT Context2;
  26. PnPState State;
  27. IPX_PNP_OPCODE OpCode;
  28. NTSTATUS Status[3];
  29. } NetPnPEventReserved, *PNetPnPEventReserved;
  30. #endif _PNP_POWER_