| 1256 | } |
| 1257 | |
| 1258 | int get_graph_exec_status(graph_t graph) |
| 1259 | { |
| 1260 | GraphExecutor* executor = reinterpret_cast<GraphExecutor*>(graph); |
| 1261 | |
| 1262 | return executor->GetExecStatus(); |
| 1263 | } |
| 1264 | |
| 1265 | int set_graph_event_hook(graph_t graph, int event, event_handler_t cb_func, void* cb_arg) |
| 1266 | { |
nothing calls this directly
no test coverage detected