예제 #1
0
파일: App.cs 프로젝트: fmutant/scriptorium
    public ScintillaNet.Marker m_markerArrow;               // Current execution point marker

    // Constructor
    public App()
    {
      m_network = new Network();
      m_debuggerSession = new DebuggerSession(m_network);
      m_debuggerRecInterface = new OurDebuggerRecInterface(this);
      m_state = new DebuggerState();

      m_timeLastPollMachineStateMS = 0;
    }
예제 #2
0
        public ScintillaNet.Marker m_markerArrow;              // Current execution point marker

        // Constructor
        public App()
        {
            m_network              = new Network();
            m_debuggerSession      = new DebuggerSession(m_network);
            m_debuggerRecInterface = new OurDebuggerRecInterface(this);
            m_state = new DebuggerState();

            m_timeLastPollMachineStateMS = 0;
        }
예제 #3
0
파일: App.cs 프로젝트: fmutant/scriptorium
 public void OnGetThreadContext(DebuggerState.ThreadInfo a_threadInfo)
 {
   m_debuggerSession.gmMachineGetContext(a_threadInfo.m_id, 0);
 }