File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 88using System . Threading ;
99using System . Threading . Tasks ;
1010using ReClassNET . AddressParser ;
11- using ReClassNET . SymbolReader ;
11+ using ReClassNET . Symbols ;
1212using ReClassNET . Util ;
1313
1414namespace ReClassNET . Memory
@@ -62,8 +62,8 @@ public class Section
6262
6363 private readonly List < Section > sections = new List < Section > ( ) ;
6464
65- private readonly Symbols symbols = new Symbols ( ) ;
66- public Symbols Symbols => symbols ;
65+ private readonly SymbolStore symbols = new SymbolStore ( ) ;
66+ public SymbolStore Symbols => symbols ;
6767
6868 public bool IsValid => process != null && nativeHelper . IsProcessValid ( process . Handle ) ;
6969
Original file line number Diff line number Diff line change 329329 </Compile >
330330 <Compile Include =" Settings.cs" />
331331 <Compile Include =" UI\ShellIcon.cs" />
332- <Compile Include =" SymbolReader \ComDisposableWrapper.cs" />
333- <Compile Include =" SymbolReader \SymbolReader.cs" />
334- <Compile Include =" SymbolReader\ Symbols.cs" />
332+ <Compile Include =" Symbols \ComDisposableWrapper.cs" />
333+ <Compile Include =" Symbols \SymbolReader.cs" />
334+ <Compile Include =" Symbols\SymbolStore .cs" />
335335 <Compile Include =" UI\GlobalWindowManager.cs" />
336336 <Compile Include =" UI\SettingsCheckBox.cs" >
337337 <SubType >Component</SubType >
Original file line number Diff line number Diff line change 22using System . Diagnostics . Contracts ;
33using System . Runtime . InteropServices ;
44
5- namespace ReClassNET . SymbolReader
5+ namespace ReClassNET . Symbols
66{
77 class DisposableWrapper : IDisposable
88 {
Original file line number Diff line number Diff line change 55using ReClassNET . Memory ;
66using ReClassNET . Util ;
77
8- namespace ReClassNET . SymbolReader
8+ namespace ReClassNET . Symbols
99{
1010 public class SymbolReader : IDisposable
1111 {
Original file line number Diff line number Diff line change 99using ReClassNET . Memory ;
1010using ReClassNET . Util ;
1111
12- namespace ReClassNET . SymbolReader
12+ namespace ReClassNET . Symbols
1313{
1414 class DiaUtil : IDisposable
1515 {
@@ -50,7 +50,7 @@ public void Dispose()
5050 }
5151 }
5252
53- public class Symbols
53+ public class SymbolStore
5454 {
5555 private const string BlackListFile = "blacklist.txt" ;
5656
@@ -64,7 +64,7 @@ public class Symbols
6464
6565 private readonly HashSet < string > moduleBlacklist = new HashSet < string > ( ) ;
6666
67- public Symbols ( )
67+ public SymbolStore ( )
6868 {
6969 ResolveSearchPath ( ) ;
7070
You can’t perform that action at this time.
0 commit comments