| 120 | |
| 121 | |
| 122 | typedef struct BNDebugBreakpoint |
| 123 | { |
| 124 | // TODO: we should add an absolute address to this, along with a boolean telling whether it is valid |
| 125 | char* module; |
| 126 | uint64_t offset; |
| 127 | uint64_t address; |
| 128 | bool enabled; |
| 129 | } BNDebugBreakpoint; |
| 130 | |
| 131 | |
| 132 | typedef struct BNModuleNameAndOffset |
nothing calls this directly
no outgoing calls
no test coverage detected