Source code of Windows XP (NT5)
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.

42 lines
715 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. viirp.h
  5. Abstract:
  6. This header contains private prototypes for managing IRPs used in the
  7. verification process. This file is meant to be included only by vfirp.c
  8. Author:
  9. Adrian J. Oney (adriao) 16-June-2000
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. AdriaO 06/16/2000 - Created.
  14. --*/
  15. VOID
  16. FASTCALL
  17. ViIrpAllocateLockedPacket(
  18. IN CCHAR StackSize,
  19. IN BOOLEAN ChargeQuota,
  20. OUT PIOV_REQUEST_PACKET *IovPacket
  21. );
  22. NTSTATUS
  23. ViIrpSynchronousCompletionRoutine(
  24. IN PDEVICE_OBJECT DeviceObject,
  25. IN PIRP Irp,
  26. IN PVOID Context
  27. );