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.

40 lines
713 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. vfipacket.h
  5. Abstract:
  6. This header contains private prototypes used in managing the verifier
  7. packet data that tracks IRPs. It should be included by vfpacket.c only.
  8. Author:
  9. Adrian J. Oney (adriao) 20-Apr-1998
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. AdriaO 05/02/2000 - Seperated out from ntos\io\hashirp.h
  14. --*/
  15. VOID
  16. FASTCALL
  17. VfpPacketFree(
  18. IN PIOV_REQUEST_PACKET IovPacket
  19. );
  20. VOID
  21. VfpPacketNotificationCallback(
  22. IN PIOV_DATABASE_HEADER IovHeader,
  23. IN PIRP TrackedIrp OPTIONAL,
  24. IN IRP_DATABASE_EVENT Event
  25. );