mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Implement GetLargePageMinimum()
svn path=/trunk/; revision=31014
This commit is contained in:
parent
75db192c8d
commit
155a5c8344
2 changed files with 10 additions and 8 deletions
|
@ -1364,11 +1364,3 @@ Wow64RevertWow64FsRedirection (VOID * pv)
|
|||
STUB;
|
||||
return FALSE;
|
||||
}
|
||||
SIZE_T
|
||||
WINAPI
|
||||
GetLargePageMinimum(void)
|
||||
{
|
||||
STUB;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -20,6 +20,16 @@
|
|||
|
||||
#define PV_NT351 0x00030033
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
SIZE_T
|
||||
WINAPI
|
||||
GetLargePageMinimum(VOID)
|
||||
{
|
||||
return SharedUserData->LargePageMinimum;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue