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

/*++
copyright (c) 2000 Microsoft Corporation
Module Name:
lsawow.h
Abstract:
WOW64 structure/function definitions for the LSA server
Author:
8-Nov-2000 JSchwart
Revision History:
--*/
#ifndef _LSAWOW_H
#define _LSAWOW_H
#if _WIN64
//
// WOW64 versions of public data structures. These MUST be kept
// in sync with their public equivalents.
//
typedef struct _QUOTA_LIMITS_WOW64
{
ULONG PagedPoolLimit;
ULONG NonPagedPoolLimit;
ULONG MinimumWorkingSetSize;
ULONG MaximumWorkingSetSize;
ULONG PagefileLimit;
LARGE_INTEGER TimeLimit;
}
QUOTA_LIMITS_WOW64, *PQUOTA_LIMITS_WOW64;
#endif // _WIN64
#endif // _LSAWOW_H