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.

38 lines
699 B

  1. NTSTATUS
  2. UsbScDevicePower(
  3. PDEVICE_OBJECT DeviceObject,
  4. PIRP Irp
  5. );
  6. NTSTATUS
  7. UsbScSystemPower(
  8. PDEVICE_OBJECT DeviceObject,
  9. PIRP Irp
  10. );
  11. NTSTATUS
  12. UsbScSystemPowerCompletion(
  13. PDEVICE_OBJECT DeviceObject,
  14. PIRP Irp,
  15. PVOID Context
  16. );
  17. VOID
  18. UsbScDeviceRequestCompletion(
  19. PDEVICE_OBJECT DeviceObject,
  20. UCHAR MinorFunction,
  21. POWER_STATE PowerState,
  22. PVOID Context,
  23. PIO_STATUS_BLOCK IoStatus
  24. );
  25. NTSTATUS
  26. UsbScDevicePowerUpCompletion(
  27. PDEVICE_OBJECT DeviceObject,
  28. PIRP Irp,
  29. PVOID Context
  30. );