GleeBug/GleeBug/Debugger.Loop.Unknown.cpp

13 lines
301 B
C++

#include "Debugger.h"
namespace GleeBug
{
void Debugger::unknownEvent(DWORD debugEventCode)
{
//prevent possible anti-debug trick
mContinueStatus = DBG_EXCEPTION_NOT_HANDLED;
//call the debug event callback
cbUnknownEvent(debugEventCode);
}
};