extern structstd.coff.BaseRelocationDirectoryEntry[src]

Fields

page_rva: u32

The image base plus the page RVA is added to each offset to create the VA where the base relocation must be applied.

block_size: u32

The total number of bytes in the base relocation block, including the Page RVA and Block Size fields and the Type/Offset fields that follow.

Source Code

Source code
pub const BaseRelocationDirectoryEntry = extern struct {
    /// The image base plus the page RVA is added to each offset to create the VA where the base relocation must be applied.
    page_rva: u32,

    /// The total number of bytes in the base relocation block, including the Page RVA and Block Size fields and the Type/Offset fields that follow.
    block_size: u32,
}