Trait exe::types::ThunkFunctions[][src]

pub trait ThunkFunctions {
    fn is_ordinal(&self) -> bool;
fn parse_export(&self, start: RVA, end: RVA) -> ThunkData;
fn parse_import(&self) -> ThunkData; }
Expand description

Functions to help with thunks in import/export data.

Required methods

Check whether this thunk is an ordinal or not.

Parse this thunk as an export thunk.

Parse this thunk as an import thunk.

Implementors