pub fn allocate(
    address: usize,
    size: usize,
    allocation_type: VIRTUAL_ALLOCATION_TYPE,
    protection: MemoryProtection
) -> Result<*mut (), FaitheError>
Expand description

Tries to allocate memory pages in the target process. On success returns the address of allocated region.