| 1546 | } |
| 1547 | |
| 1548 | BF_EXPORT void BF_CALLTYPE Debugger_WriteMemory(uintptr address, uintptr size, unsigned char* data) |
| 1549 | { |
| 1550 | if (gDebugger == NULL) |
| 1551 | return; |
| 1552 | gDebugger->WriteMemory(address, data, size); |
| 1553 | } |
| 1554 | |
| 1555 | BF_EXPORT const char* BF_CALLTYPE Debugger_GetModulesInfo() |
| 1556 | { |
nothing calls this directly
no test coverage detected