| 69 | |
| 70 | |
| 71 | void PluginCommand::DefaultPluginCommandActionCallback(void* ctxt, BNBinaryView* view) |
| 72 | { |
| 73 | RegisteredDefaultCommand* cmd = (RegisteredDefaultCommand*)ctxt; |
| 74 | Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view)); |
| 75 | cmd->action(viewObject); |
| 76 | } |
| 77 | |
| 78 | |
| 79 | void PluginCommand::AddressPluginCommandActionCallback(void* ctxt, BNBinaryView* view, uint64_t addr) |