| 120 | |
| 121 | |
| 122 | bool BNDebuggerControllerExists(BNBinaryView* data) |
| 123 | { |
| 124 | if (!data) |
| 125 | return false; |
| 126 | |
| 127 | Ref<BinaryView> view = new BinaryView(BNNewViewReference(data)); |
| 128 | return DebuggerController::ControllerExists(view); |
| 129 | } |
| 130 | |
| 131 | |
| 132 | BNBinaryView* BNDebuggerGetLiveView(BNDebuggerController* controller) |