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.

49 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. iovputil.h
  5. Abstract:
  6. This header contains the private declarations need for various driver
  7. verification utilities. It should be included by iovutil.c only!
  8. Author:
  9. Adrian J. Oney (adriao) 20-Apr-1998
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. AdriaO 02/10/2000 - Seperated out from ntos\io\trackirp.h
  14. --*/
  15. //
  16. // These must coexist with the DOE_ flags.
  17. //
  18. #define DOV_EXAMINED 0x80000000
  19. #define DOV_TRACKED 0x40000000
  20. #define DOV_DESIGNATED_FDO 0x20000000
  21. #define DOV_BOTTOM_OF_FDO_STACK 0x10000000
  22. #define DOV_RAW_PDO 0x08000000
  23. #define DOV_DELETED 0x04000000
  24. #define DOV_FLAGS_CHECKED 0x02000000
  25. #define DOV_FLAGS_RELATION_EXAMINED 0x01000000
  26. BOOLEAN
  27. IovpUtilFlushListCallback(
  28. IN PVOID Object,
  29. IN PUNICODE_STRING ObjectName,
  30. IN ULONG_PTR HandleCount,
  31. IN ULONG_PTR PointerCount,
  32. IN PVOID Context
  33. );