mirror of https://github.com/x64dbg/GleeBug
removed log function
This commit is contained in:
parent
a0d11b599f
commit
5733c67818
|
|
@ -1,9 +0,0 @@
|
|||
#include "Debugger.h"
|
||||
|
||||
namespace GleeBug
|
||||
{
|
||||
void Debugger::log(std::string msg)
|
||||
{
|
||||
puts(msg.c_str());
|
||||
}
|
||||
};
|
||||
|
|
@ -71,7 +71,6 @@ namespace GleeBug
|
|||
virtual void exceptionEvent(EXCEPTION_DEBUG_INFO* exceptionInfo);
|
||||
virtual void debugStringEvent(OUTPUT_DEBUG_STRING_INFO* debugString);
|
||||
virtual void ripEvent(RIP_INFO* rip);
|
||||
virtual void log(std::string msg);
|
||||
|
||||
ProcessInfo _mainProcess;
|
||||
DWORD _continueStatus;
|
||||
|
|
|
|||
|
|
@ -136,7 +136,6 @@
|
|||
<ItemGroup>
|
||||
<ClCompile Include="Debugger.cpp" />
|
||||
<ClCompile Include="Debugger.Loop.cpp" />
|
||||
<ClCompile Include="Debugger.Misc.cpp" />
|
||||
<ClCompile Include="_global.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@
|
|||
<ClCompile Include="Debugger.Loop.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Debugger.Misc.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="_global.h">
|
||||
|
|
|
|||
Loading…
Reference in New Issue