Type Function getRegs [src]

Prototype

pub fn getRegs(ctx: *const CONTEXT) struct { bp: usize, ip: usize }

Parameters

ctx: *const CONTEXT

Source

pub fn getRegs(ctx: *const CONTEXT) struct { bp: usize, ip: usize } { return .{ .bp = ctx.Ebp, .ip = ctx.Eip }; }