-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
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
Support typedef
d types
#388
Comments
typedef
'd types are not preserved (Binary Ninja)typedef
d types in BinSync
So this one is actually rather hard and shows how little I use To support this we need to support In a bsproj, this can be seen like this: Proposed changes
|
Just correcting myself: I don't know where I got this notion from, but BinSync does actually record the parameter as the |
@alexrp this is good to know and what should happen in the current setup. |
BinSync still needs to add support for Typedefs, but since LibBS added it in binsync/libbs#98, we can now at least pull and push them. However, full support is stalled on binsync/libbs#99. |
Description
If I have e.g.
typedef void* HANDLE;
in Binary Ninja and I retype a function parameter asHANDLE
, BinSync saves it as justvoid*
.I wonder if there's a way to preserve the
typedef
in such cases?Steps to reproduce the bug
typedef void* HANDLE;
.HANDLE
.Environment
Binary Ninja 3.5.4311-dev Personal (ff27871c)
Additional context
No response
The text was updated successfully, but these errors were encountered: