declare_c_type
Define or modify local types in IDA Pro using a C declaration string. Streamlines reverse engineering workflows by automating type creation or updates.
Instructions
Create or update a local type from a C declaration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
c_declaration | Yes | C declaration of the type. Examples include: typedef int foo_t; struct bar { int a; bool b; }; |
Input Schema (JSON Schema)
{
"properties": {
"c_declaration": {
"description": "C declaration of the type. Examples include: typedef int foo_t; struct bar { int a; bool b; };",
"title": "C Declaration",
"type": "string"
}
},
"required": [
"c_declaration"
],
"title": "declare_c_typeArguments",
"type": "object"
}