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

/*++
Copyright (c) 1989-1997 Microsoft Corporation
Module Name:
ipxpnp.h
Abstract:
This module contains definitions specific to the
IPX module for PnP/PM.
Author:
Shreedhar Madhavapeddi (ShreeM) 24-February-1993
Environment:
Kernel mode
Revision History:
--*/
#if defined(_PNP_POWER_)
typedef enum IPX_PNP_PROCESSING_STATE {
NONE_DONE,
SPX_DONE,
NB_DONE,
ALL_DONE
} PnPState;
typedef
struct _NetPnPEventReserved {
NDIS_HANDLE *ProtocolBindingContext;
PTDI_PNP_CONTEXT Context1;
PTDI_PNP_CONTEXT Context2;
PnPState State;
IPX_PNP_OPCODE OpCode;
NTSTATUS Status[3];
} NetPnPEventReserved, *PNetPnPEventReserved;
#endif _PNP_POWER_