| 1069 | } |
| 1070 | |
| 1071 | BF_EXPORT uintptr BF_CALLTYPE Breakpoint_GetAddress(Breakpoint* wdBreakpoint, Breakpoint** outLinkedSibling) |
| 1072 | { |
| 1073 | if (outLinkedSibling != NULL) |
| 1074 | *outLinkedSibling = wdBreakpoint->mLinkedSibling; |
| 1075 | return gDebugger->GetBreakpointAddr(wdBreakpoint); |
| 1076 | } |
| 1077 | |
| 1078 | BF_EXPORT bool BF_CALLTYPE Breakpoint_IsMemoryBreakpointBound(Breakpoint* wdBreakpoint) |
| 1079 | { |
nothing calls this directly
no test coverage detected