Struct xbe::KernelThunkTable[][src]

pub struct KernelThunkTable { /* fields omitted */ }

A decoded thunk table.

The thunk table lists kernel symbols to be imported into the XBE process. Each symbol is represented by an import ID according to this table. The loader replaces the 32-bit import IDs by the address of the symbol.

Methods

impl KernelThunkTable
[src]

Returns the symbol import IDs in this thunk table.

Returns the virtual address at which this thunk table starts.

Returns the length of the thunk table in bytes (not counting the terminating null entry).

Trait Implementations

impl Debug for KernelThunkTable
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations