typedef enum _DEVICE_PNP_STATE {

    NotStarted = 0,         // Not started yet
    Started,                // Device has received the START_DEVICE IRP
    StopPending,            // Device has received the QUERY_STOP IRP
    Stopped,                // Device has received the STOP_DEVICE IRP
    RemovePending,          // Device has received the QUERY_REMOVE IRP
    SurpriseRemovePending,  // Device has received the SURPRISE_REMOVE IRP
    Deleted,                // Device has received the REMOVE_DEVICE IRP
    UnKnown                 // Unknown state

} DEVICE_PNP_STATE;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-26
  • 2021-06-05
  • 2021-09-25
  • 2021-10-01
  • 2021-05-24
  • 2021-05-26
猜你喜欢
  • 2021-10-16
  • 2022-01-12
  • 2022-12-23
  • 2021-10-03
  • 2021-11-21
  • 2021-10-16
  • 2022-12-23
相关资源
相似解决方案