My goal is to store addresses and add offsets. As an example I have something like this:
let base_addr = 0x0112A160 as *mut u32;
Now I want to store a second address which is base_addr + offset
I've tried some things but everything I've tried brings the program to crash with (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION) or some other problems
Example of what I've tried:
let new_address: u32 = *base_addr + 0xF8;
let new_address = base_addr + 0xF8 as *mut 32;
Can anyone explain to me how something like this is done correctly?
Use the method:
or if you want to offset in bytes and can use nightly