Fleshing out debugger types.

This commit is contained in:
Ben Vanik
2015-05-24 13:43:15 -07:00
parent da655d15b3
commit e55be7d2c9
103 changed files with 4008 additions and 2025 deletions

View File

@@ -63,29 +63,53 @@
<Compile Include="Breakpoint.cs" />
<Compile Include="BreakpointList.cs" />
<Compile Include="Callstack.cs" />
<Compile Include="Context.cs" />
<Compile Include="Debugger.cs" />
<Compile Include="Function.cs" />
<Compile Include="FunctionList.cs" />
<Compile Include="KernelObject.cs" />
<Compile Include="Memory.cs" />
<Compile Include="MemoryView.cs" />
<Compile Include="Module.cs" />
<Compile Include="ModuleList.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Proto\xe\debug\proto\AddBreakpointRequest.cs" />
<Compile Include="Proto\xe\debug\proto\AddBreakpointResponse.cs" />
<Compile Include="Proto\xe\debug\proto\AccessViolationEvent.cs" />
<Compile Include="Proto\xe\debug\proto\AddBreakpointsRequest.cs" />
<Compile Include="Proto\xe\debug\proto\AddBreakpointsResponse.cs" />
<Compile Include="Proto\xe\debug\proto\AttachRequest.cs" />
<Compile Include="Proto\xe\debug\proto\AttachResponse.cs" />
<Compile Include="Proto\xe\debug\proto\Foo.cs" />
<Compile Include="Proto\xe\debug\proto\Breakpoint.cs" />
<Compile Include="Proto\xe\debug\proto\BreakpointEvent.cs" />
<Compile Include="Proto\xe\debug\proto\BreakRequest.cs" />
<Compile Include="Proto\xe\debug\proto\BreakResponse.cs" />
<Compile Include="Proto\xe\debug\proto\ContinueAction.cs" />
<Compile Include="Proto\xe\debug\proto\ContinueRequest.cs" />
<Compile Include="Proto\xe\debug\proto\ContinueResponse.cs" />
<Compile Include="Proto\xe\debug\proto\GetModuleRequest.cs" />
<Compile Include="Proto\xe\debug\proto\GetModuleResponse.cs" />
<Compile Include="Proto\xe\debug\proto\ListBreakpointsRequest.cs" />
<Compile Include="Proto\xe\debug\proto\ListBreakpointsResponse.cs" />
<Compile Include="Proto\xe\debug\proto\RemoveBreakpointRequest.cs" />
<Compile Include="Proto\xe\debug\proto\RemoveBreakpointResponse.cs" />
<Compile Include="Proto\xe\debug\proto\ListModulesRequest.cs" />
<Compile Include="Proto\xe\debug\proto\ListModulesResponse.cs" />
<Compile Include="Proto\xe\debug\proto\ListThreadsRequest.cs" />
<Compile Include="Proto\xe\debug\proto\ListThreadsResponse.cs" />
<Compile Include="Proto\xe\debug\proto\Module.cs" />
<Compile Include="Proto\xe\debug\proto\ModuleType.cs" />
<Compile Include="Proto\xe\debug\proto\RemoveBreakpointsRequest.cs" />
<Compile Include="Proto\xe\debug\proto\RemoveBreakpointsResponse.cs" />
<Compile Include="Proto\xe\debug\proto\Request.cs" />
<Compile Include="Proto\xe\debug\proto\RequestData.cs" />
<Compile Include="Proto\xe\debug\proto\Response.cs" />
<Compile Include="Proto\xe\debug\proto\ResponseData.cs" />
<Compile Include="Proto\xe\debug\proto\StructTest.cs" />
<Compile Include="Proto\xe\debug\proto\TableTest.cs" />
<Compile Include="Proto\xe\debug\proto\StepAction.cs" />
<Compile Include="Proto\xe\debug\proto\StepRequest.cs" />
<Compile Include="Proto\xe\debug\proto\StepResponse.cs" />
<Compile Include="Proto\xe\debug\proto\StopRequest.cs" />
<Compile Include="Proto\xe\debug\proto\StopResponse.cs" />
<Compile Include="Proto\xe\debug\proto\Thread.cs" />
<Compile Include="Proto\xe\debug\proto\ThreadType.cs" />
<Compile Include="Proto\xe\debug\proto\UpdateBreakpointsRequest.cs" />
<Compile Include="Proto\xe\debug\proto\UpdateBreakpointsResponse.cs" />
<Compile Include="Proto\xe\debug\proto\XObject.cs" />
<Compile Include="Thread.cs" />
<Compile Include="ThreadList.cs" />
<Compile Include="Utilities\Changeable.cs" />