| 358 | |
| 359 | |
| 360 | void BinaryNinja::WorkerInteractiveEnqueue(const function<void()>& action, const std::string& name) |
| 361 | { |
| 362 | WorkerThreadActionContext* ctxt = new WorkerThreadActionContext; |
| 363 | ctxt->action = action; |
| 364 | BNWorkerInteractiveEnqueueNamed(ctxt, WorkerActionCallback, name.c_str()); |
| 365 | } |
| 366 | |
| 367 | |
| 368 | void BinaryNinja::WorkerInteractiveEnqueue(RefCountObject* owner, const function<void()>& action, const std::string& name) |