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 8
8
using System . Threading ;
9
9
using System . Threading . Tasks ;
10
10
using ReClassNET . AddressParser ;
11
- using ReClassNET . SymbolReader ;
11
+ using ReClassNET . Symbols ;
12
12
using ReClassNET . Util ;
13
13
14
14
namespace ReClassNET . Memory
@@ -62,8 +62,8 @@ public class Section
62
62
63
63
private readonly List < Section > sections = new List < Section > ( ) ;
64
64
65
- private readonly Symbols symbols = new Symbols ( ) ;
66
- public Symbols Symbols => symbols ;
65
+ private readonly SymbolStore symbols = new SymbolStore ( ) ;
66
+ public SymbolStore Symbols => symbols ;
67
67
68
68
public bool IsValid => process != null && nativeHelper . IsProcessValid ( process . Handle ) ;
69
69
Original file line number Diff line number Diff line change 329
329
</Compile >
330
330
<Compile Include =" Settings.cs" />
331
331
<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" />
335
335
<Compile Include =" UI\GlobalWindowManager.cs" />
336
336
<Compile Include =" UI\SettingsCheckBox.cs" >
337
337
<SubType >Component</SubType >
Original file line number Diff line number Diff line change 2
2
using System . Diagnostics . Contracts ;
3
3
using System . Runtime . InteropServices ;
4
4
5
- namespace ReClassNET . SymbolReader
5
+ namespace ReClassNET . Symbols
6
6
{
7
7
class DisposableWrapper : IDisposable
8
8
{
Original file line number Diff line number Diff line change 5
5
using ReClassNET . Memory ;
6
6
using ReClassNET . Util ;
7
7
8
- namespace ReClassNET . SymbolReader
8
+ namespace ReClassNET . Symbols
9
9
{
10
10
public class SymbolReader : IDisposable
11
11
{
Original file line number Diff line number Diff line change 9
9
using ReClassNET . Memory ;
10
10
using ReClassNET . Util ;
11
11
12
- namespace ReClassNET . SymbolReader
12
+ namespace ReClassNET . Symbols
13
13
{
14
14
class DiaUtil : IDisposable
15
15
{
@@ -50,7 +50,7 @@ public void Dispose()
50
50
}
51
51
}
52
52
53
- public class Symbols
53
+ public class SymbolStore
54
54
{
55
55
private const string BlackListFile = "blacklist.txt" ;
56
56
@@ -64,7 +64,7 @@ public class Symbols
64
64
65
65
private readonly HashSet < string > moduleBlacklist = new HashSet < string > ( ) ;
66
66
67
- public Symbols ( )
67
+ public SymbolStore ( )
68
68
{
69
69
ResolveSearchPath ( ) ;
70
70
You can’t perform that action at this time.
0 commit comments