We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the only typed structure fields are:
__vftable
We could use IDA type information while propagating to automatically type more fields.
For example if we created a struc_A with a field field_c from the following assignement:
struc_A
field_c
A.field_c = "some_string";
We can guess that field_c type is char*, and automatically type it.
char*
Or if we have the following call:
fct(A.field_c);
And knowing fct prototype to be:
fct
void fct(char* str);
We can guess the same.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now the only typed structure fields are:
__vftable
pointers in structures;We could use IDA type information while propagating to automatically type more fields.
For example if we created a
struc_A
with a fieldfield_c
from the following assignement:We can guess that
field_c
type ischar*
, and automatically type it.Or if we have the following call:
And knowing
fct
prototype to be:We can guess the same.
The text was updated successfully, but these errors were encountered: