set_function_prototype
Define or update a function's prototype in IDA Pro by specifying its address and new prototype. Streamline reverse engineering workflows with automated function signature management.
Instructions
Set a function's prototype
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the function | |
prototype | Yes | New function prototype |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the function",
"title": "Function Address",
"type": "string"
},
"prototype": {
"description": "New function prototype",
"title": "Prototype",
"type": "string"
}
},
"required": [
"function_address",
"prototype"
],
"title": "set_function_prototypeArguments",
"type": "object"
}