mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Changes to improve IDE Module Panel, allowing loading image and pdb
This commit is contained in:
parent
d41a8c5683
commit
bac46ef6e9
10 changed files with 124 additions and 41 deletions
|
@ -1532,6 +1532,11 @@ BF_EXPORT void BF_CALLTYPE Debugger_CancelSymSrv()
|
|||
gDebugger->CancelSymSrv();
|
||||
}
|
||||
|
||||
BF_EXPORT int BF_CALLTYPE Debugger_LoadImageForModuleWith(const char* moduleName, const char* debugFilePath) // 0 = No Change, 1 = Loaded, 2 = Loading in background
|
||||
{
|
||||
return gDebugger->LoadImageForModule(moduleName, debugFilePath);
|
||||
}
|
||||
|
||||
BF_EXPORT int BF_CALLTYPE Debugger_LoadDebugInfoForModule(const char* moduleName) // 0 = No Change, 1 = Loaded, 2 = Loading in background
|
||||
{
|
||||
return gDebugger->LoadDebugInfoForModule(moduleName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue