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.

35 lines
526 B

  1. //---- waitmask.h
  2. NTSTATUS
  3. SerialStartMask(
  4. IN PSERIAL_DEVICE_EXTENSION Extension
  5. );
  6. BOOLEAN
  7. SerialGrabWaitFromIsr(
  8. IN PVOID Context
  9. );
  10. BOOLEAN
  11. SerialGiveWaitToIsr(
  12. IN PVOID Context
  13. );
  14. BOOLEAN
  15. SerialFinishOldWait(
  16. IN PVOID Context
  17. );
  18. VOID
  19. SerialCancelWait(
  20. IN PDEVICE_OBJECT DeviceObject,
  21. IN PIRP Irp
  22. );
  23. VOID
  24. SerialCompleteWait(
  25. IN PKDPC Dpc,
  26. IN PVOID DeferredContext,
  27. IN PVOID SystemContext1,
  28. IN PVOID SystemContext2
  29. );