| 1539 | } |
| 1540 | |
| 1541 | BF_EXPORT void BF_CALLTYPE Debugger_ReadMemory(uintptr address, uintptr size, unsigned char* data) |
| 1542 | { |
| 1543 | if (gDebugger == NULL) |
| 1544 | return; |
| 1545 | gDebugger->ReadMemory(address, size, data); |
| 1546 | } |
| 1547 | |
| 1548 | BF_EXPORT void BF_CALLTYPE Debugger_WriteMemory(uintptr address, uintptr size, unsigned char* data) |
| 1549 | { |
nothing calls this directly
no test coverage detected