| 77 | |
| 78 | |
| 79 | void PluginCommand::AddressPluginCommandActionCallback(void* ctxt, BNBinaryView* view, uint64_t addr) |
| 80 | { |
| 81 | RegisteredAddressCommand* cmd = (RegisteredAddressCommand*)ctxt; |
| 82 | Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view)); |
| 83 | cmd->action(viewObject, addr); |
| 84 | } |
| 85 | |
| 86 | |
| 87 | void PluginCommand::RangePluginCommandActionCallback(void* ctxt, BNBinaryView* view, uint64_t addr, uint64_t len) |