removed log function

This commit is contained in:
Duncan 2015-03-25 12:58:22 +01:00
parent a0d11b599f
commit 5733c67818
4 changed files with 0 additions and 14 deletions

View File

@ -1,9 +0,0 @@
#include "Debugger.h"
namespace GleeBug
{
void Debugger::log(std::string msg)
{
puts(msg.c_str());
}
};

View File

@ -71,7 +71,6 @@ namespace GleeBug
virtual void exceptionEvent(EXCEPTION_DEBUG_INFO* exceptionInfo); virtual void exceptionEvent(EXCEPTION_DEBUG_INFO* exceptionInfo);
virtual void debugStringEvent(OUTPUT_DEBUG_STRING_INFO* debugString); virtual void debugStringEvent(OUTPUT_DEBUG_STRING_INFO* debugString);
virtual void ripEvent(RIP_INFO* rip); virtual void ripEvent(RIP_INFO* rip);
virtual void log(std::string msg);
ProcessInfo _mainProcess; ProcessInfo _mainProcess;
DWORD _continueStatus; DWORD _continueStatus;

View File

@ -136,7 +136,6 @@
<ItemGroup> <ItemGroup>
<ClCompile Include="Debugger.cpp" /> <ClCompile Include="Debugger.cpp" />
<ClCompile Include="Debugger.Loop.cpp" /> <ClCompile Include="Debugger.Loop.cpp" />
<ClCompile Include="Debugger.Misc.cpp" />
<ClCompile Include="_global.cpp" /> <ClCompile Include="_global.cpp" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -24,9 +24,6 @@
<ClCompile Include="Debugger.Loop.cpp"> <ClCompile Include="Debugger.Loop.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="Debugger.Misc.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="_global.h"> <ClInclude Include="_global.h">