1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Added "Keep Native Console Open" option

This commit is contained in:
Brian Fiete 2024-07-24 09:41:08 +02:00
parent fd3bd861ae
commit 8052066ab0
18 changed files with 423 additions and 41 deletions

View file

@ -409,7 +409,7 @@ void CeDebugger::ContinueDebugEvent()
mCeMachine->mDebugEvent.Set();
}
void CeDebugger::ForegroundTarget()
void CeDebugger::ForegroundTarget(int altProcessId)
{
}
@ -4361,6 +4361,11 @@ String CeDebugger::GetProcessInfo()
return String();
}
int CeDebugger::GetProcessId()
{
return 0;
}
DebugVisualizerEntry* CeDebugger::FindVisualizerForType(BfType* dbgType, Array<String>* wildcardCaptures)
{
auto ceModule = mCeMachine->mCeModule;