| 213 | |
| 214 | |
| 215 | static void ShowGraphReportCallback(void* ctxt, BNBinaryView* view, const char* title, BNFlowGraph* graph) |
| 216 | { |
| 217 | InteractionHandler* handler = (InteractionHandler*)ctxt; |
| 218 | handler->ShowGraphReport(view ? new BinaryView(BNNewViewReference(view)) : nullptr, title, |
| 219 | new CoreFlowGraph(BNNewFlowGraphReference(graph))); |
| 220 | } |
| 221 | |
| 222 | |
| 223 | static void ShowReportCollectionCallback(void* ctxt, const char* title, BNReportCollection* reports) |
nothing calls this directly
no test coverage detected