mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Skeleton for KERNEL32.GlobalMemoryStatus
svn path=/trunk/; revision=2086
This commit is contained in:
parent
062243bc91
commit
9859f23c21
1 changed files with 34 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: global.c,v 1.6 2001/04/05 01:54:16 ekohl Exp $
|
||||
/* $Id: global.c,v 1.7 2001/07/22 19:55:21 ea Exp $
|
||||
*
|
||||
* Win32 Global/Local heap functions (GlobalXXX, LocalXXX).
|
||||
* These functions included in Win32 for compatibility with 16 bit Windows
|
||||
|
@ -218,7 +218,39 @@ GlobalLock(HGLOBAL hMem)
|
|||
VOID STDCALL
|
||||
GlobalMemoryStatus(LPMEMORYSTATUS lpBuffer)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
NTSTATUS Status;
|
||||
SYSTEM_PERFORMANCE_INFO Spi;
|
||||
QUOTA_LIMITS Ql;
|
||||
VM_COUNTERS Vmc;
|
||||
PIMAGE_NT_HEADERS ImageNtHeader;
|
||||
|
||||
RtlZeroMemory (lpBuffer, sizeof (MEMORYSTATUS));
|
||||
lpBuffer->dwLength = sizeof (MEMORYSTATUS);
|
||||
Status = NtQuerySystemInformation (
|
||||
SystemPerformanceInformation,
|
||||
& Spi,
|
||||
sizeof Spi,
|
||||
NULL
|
||||
);
|
||||
/* FIXME: perform computations and fill lpBuffer fields */
|
||||
Status = NtQueryInformationProcess (
|
||||
GetCurrentProcess(),
|
||||
ProcessQuotaLimits,
|
||||
& Ql,
|
||||
sizeof Ql,
|
||||
NULL
|
||||
);
|
||||
/* FIXME: perform computations and fill lpBuffer fields */
|
||||
Status = NtQueryInformationProcess (
|
||||
GetCurrentProcess(),
|
||||
ProcessVmCounters,
|
||||
& Vmc,
|
||||
sizeof Vmc,
|
||||
NULL
|
||||
);
|
||||
/* FIXME: perform computations and fill lpBuffer fields */
|
||||
ImageNtHeader = RtlImageNtHeader ((PVOID)NtCurrentPeb()->ImageBaseAddress);
|
||||
/* FIXME: perform computations and fill lpBuffer fields */
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue