Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 192 of file virtmem.c.
{ NTSTATUS Status; SIZE_T RegionSize = dwSize; PVOID BaseAddress = lpAddress; /* Lock the memory */ Status = NtLockVirtualMemory(NtCurrentProcess(), &BaseAddress, &RegionSize, MAP_PROCESS); if (!NT_SUCCESS(Status)) { /* We failed */ BaseSetLastNTError(Status); return FALSE; } /* Return success */ return TRUE; }