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.

45 lines
757 B

  1. /*++
  2. copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. lsawow.h
  5. Abstract:
  6. WOW64 structure/function definitions for the LSA server
  7. Author:
  8. 8-Nov-2000 JSchwart
  9. Revision History:
  10. --*/
  11. #ifndef _LSAWOW_H
  12. #define _LSAWOW_H
  13. #if _WIN64
  14. //
  15. // WOW64 versions of public data structures. These MUST be kept
  16. // in sync with their public equivalents.
  17. //
  18. typedef struct _QUOTA_LIMITS_WOW64
  19. {
  20. ULONG PagedPoolLimit;
  21. ULONG NonPagedPoolLimit;
  22. ULONG MinimumWorkingSetSize;
  23. ULONG MaximumWorkingSetSize;
  24. ULONG PagefileLimit;
  25. LARGE_INTEGER TimeLimit;
  26. }
  27. QUOTA_LIMITS_WOW64, *PQUOTA_LIMITS_WOW64;
  28. #endif // _WIN64
  29. #endif // _LSAWOW_H