#[repr(C)]pub struct IMAGE_BASE_RELOCATION {
pub VirtualAddress: u32,
pub SizeOfBlock: u32,
}Expand description
Represents a single base relocation block in the PE image.
Each IMAGE_BASE_RELOCATION structure describes a block of addresses
that require relocation when the image is loaded at a base address
different from its preferred base.
Fields§
§VirtualAddress: u32RVA (Relative Virtual Address) of the page where the relocations apply.
SizeOfBlock: u32Total size of the relocation block, including the header and all entries.
Auto Trait Implementations§
impl Freeze for IMAGE_BASE_RELOCATION
impl RefUnwindSafe for IMAGE_BASE_RELOCATION
impl Send for IMAGE_BASE_RELOCATION
impl Sync for IMAGE_BASE_RELOCATION
impl Unpin for IMAGE_BASE_RELOCATION
impl UnwindSafe for IMAGE_BASE_RELOCATION
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more