diff --git a/GleeBug.sln.DotSettings b/GleeBug.sln.DotSettings
new file mode 100644
index 0000000..7794a18
--- /dev/null
+++ b/GleeBug.sln.DotSettings
@@ -0,0 +1,2 @@
+
+ DO_NOT_SHOW
\ No newline at end of file
diff --git a/GleeBug/Debugger.Dll.cpp b/GleeBug/Debugger.Dll.cpp
index 8ab8850..7d46a0b 100644
--- a/GleeBug/Debugger.Dll.cpp
+++ b/GleeBug/Debugger.Dll.cpp
@@ -6,10 +6,10 @@ namespace GleeBug
{
}
- DllInfo::DllInfo(LPVOID lpBaseOfDll, ULONG_PTR sizeOfImage, LPVOID entryPoint)
+ DllInfo::DllInfo(LPVOID lpBaseOfDll, ptr sizeOfImage, LPVOID entryPoint)
{
- this->lpBaseOfDll = reinterpret_cast(lpBaseOfDll);
+ this->lpBaseOfDll = ptr(lpBaseOfDll);
this->sizeOfImage = sizeOfImage;
- this->entryPoint = reinterpret_cast(entryPoint);
+ this->entryPoint = ptr(entryPoint);
}
};
\ No newline at end of file
diff --git a/GleeBug/Debugger.Dll.h b/GleeBug/Debugger.Dll.h
index db9ba42..b9104fc 100644
--- a/GleeBug/Debugger.Dll.h
+++ b/GleeBug/Debugger.Dll.h
@@ -11,9 +11,9 @@ namespace GleeBug
class DllInfo
{
public:
- ULONG_PTR lpBaseOfDll;
- ULONG_PTR sizeOfImage;
- ULONG_PTR entryPoint;
+ ptr lpBaseOfDll;
+ ptr sizeOfImage;
+ ptr entryPoint;
/**
\brief Default constructor.
@@ -26,7 +26,7 @@ namespace GleeBug
\param sizeOfImage Size of the image.
\param entryPoint The entry point.
*/
- DllInfo(LPVOID lpBaseOfDll, ULONG_PTR sizeOfImage, LPVOID entryPoint);
+ DllInfo(LPVOID lpBaseOfDll, ptr sizeOfImage, LPVOID entryPoint);
};
};
diff --git a/GleeBug/Debugger.Global.h b/GleeBug/Debugger.Global.h
index 9950a0c..3690ee2 100644
--- a/GleeBug/Debugger.Global.h
+++ b/GleeBug/Debugger.Global.h
@@ -1,29 +1,10 @@
#ifndef _DEBUGGER_GLOBAL_H
#define _DEBUGGER_GLOBAL_H
-#include
-#include
-#include
-#include
-#include