Reko.Environments.Windows.Win32Emulator.InterceptCall C# (CSharp) Method

InterceptCall() public method

public InterceptCall ( IProcessorEmulator emu, UInt32 l ) : bool
emu IProcessorEmulator
l System.UInt32
return bool
        public bool InterceptCall(IProcessorEmulator emu, TWord l)
        {
            ExternalProcedure epProc;
            if (!this.InterceptedCalls.TryGetValue(l, out epProc))
                return false;
            ((SimulatedProc)epProc).Emulator(emu);
            return true;
        }