Takes an address in the CSRSS address space's mapped view of the shared memory region, and returns the corresponding address in our mapped view of the shared memory region.
fn relocateCsrssAddress(addr: u64) *const anyopaque
fn relocateCsrssAddress(addr: u64) *const anyopaque {
const base: [*]const u8 = @ptrCast(peb().ReadOnlySharedMemoryBase);
const offset: usize = @intCast(addr - peb().CsrServerReadOnlySharedMemoryBase);
return base + offset;
}