mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Improved hot compilation handling of DLLs
This commit is contained in:
parent
990b509111
commit
c7ae0988dc
9 changed files with 84 additions and 9 deletions
|
@ -1108,6 +1108,14 @@ BF_EXPORT int BF_CALLTYPE Debugger_GetRunState()
|
|||
return gDebugger->mRunState;
|
||||
}
|
||||
|
||||
BF_EXPORT bool Debugger_HasLoadedTargetBinary()
|
||||
{
|
||||
AutoCrit autoCrit(gDebugManager->mCritSect);
|
||||
if (gDebugger == NULL)
|
||||
return false;
|
||||
return gDebugger->HasLoadedTargetBinary();
|
||||
}
|
||||
|
||||
BF_EXPORT bool BF_CALLTYPE Debugger_HasPendingDebugLoads()
|
||||
{
|
||||
if (gDebugger == NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue