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
609 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. vfutil.h
  5. Abstract:
  6. This header contains prototypes for various functions required to do driver
  7. verification.
  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\ioassert.c
  14. --*/
  15. typedef enum {
  16. VFMP_INSTANT = 0,
  17. VFMP_INSTANT_NONPAGED
  18. } MEMORY_PERSISTANCE;
  19. BOOLEAN
  20. VfUtilIsMemoryRangeReadable(
  21. IN PVOID Location,
  22. IN size_t Length,
  23. IN MEMORY_PERSISTANCE Persistance
  24. );