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.

43 lines
766 B

  1. //
  2. // Systrack - System resource tracking
  3. // Copyright (c) Microsoft Corporation, 1997
  4. //
  5. //
  6. // header: process.hxx
  7. // author: silviuc
  8. // created: Mon Nov 09 16:51:22 1998
  9. //
  10. #ifndef _PROCESS_HXX_INCLUDED_
  11. #define _PROCESS_HXX_INCLUDED_
  12. void
  13. SystemProcessTrack (
  14. ULONG Period,
  15. ULONG DeltaHandles,
  16. ULONG DeltaThreads,
  17. ULONG DeltaWorkingSetSize,
  18. SIZE_T DeltaVirtualSize,
  19. SIZE_T DeltaPagefileUsage);
  20. void
  21. SystemProcessIdTrack (
  22. ULONG Period,
  23. ULONG ProcessId,
  24. ULONG DeltaHandles,
  25. ULONG DeltaThreads,
  26. ULONG DeltaWorkingSetSize,
  27. SIZE_T DeltaVirtualSize,
  28. SIZE_T DeltaPagefileUsage);
  29. // ...
  30. #endif // #ifndef _PROCESS_HXX_INCLUDED_
  31. //
  32. // end of header: process.hxx
  33. //