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.

43 lines
676 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. perfmtrp.h
  5. Abstract:
  6. This module contains NT/Win32 Perfmtr private data and types
  7. Author:
  8. Mark Lucovsky (markl) 28-Mar-1991
  9. Revision History:
  10. --*/
  11. #ifndef _PERFMTRP_
  12. #define _PERFMTRP_
  13. #define DOT_BUFF_LEN 10
  14. #define DOT_CHAR '*'
  15. char DotBuff[DOT_BUFF_LEN+2];
  16. #include <nt.h>
  17. #include <ntrtl.h>
  18. #include <nturtl.h>
  19. #include <windows.h>
  20. #include <assert.h>
  21. #include <stdio.h>
  22. #include <string.h>
  23. #include <ctype.h>
  24. #include <srvfsctl.h>
  25. #ifndef PROTECTED_POOL
  26. #define PROTECTED_POOL 0x80000000
  27. #endif //#ifndef PROTECTED_POOL
  28. #endif // _PERFMTRP_