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.

40 lines
701 B

  1. //
  2. // Template Driver
  3. // Copyright (c) Microsoft Corporation, 2000.
  4. //
  5. // Module: MapView.h
  6. // Author: Daniel Mihai (DMihai)
  7. // Created: 4/6/2000
  8. //
  9. // This module contains tests for MmMapViewInSystemSpace & MmMapViewInSessionSpace.
  10. //
  11. // --- History ---
  12. //
  13. // 4/6/2000 (DMihai): initial version.
  14. //
  15. #ifndef _MAPVIEW_H_INCLUDED_
  16. #define _MAPVIEW_H_INCLUDED_
  17. VOID MmMapViewInSystemSpaceLargest (
  18. PVOID NotUsed
  19. );
  20. VOID MmMapViewInSystemSpaceTotal (
  21. PVOID NotUsed
  22. );
  23. VOID MmMapViewInSessionSpaceLargest (
  24. PVOID NotUsed
  25. );
  26. VOID MmMapViewInSessionSpaceTotal (
  27. PVOID NotUsed
  28. );
  29. VOID SessionPoolTest (
  30. PVOID NotUsed
  31. );
  32. #endif // #ifndef _MAPVIEW_H_INCLUDED_