Ghidra1
Ghidra1
> FYI - We have bumped `bsim` MAXMEM to 2GB for next release I think we have decided to comment-out MAXMEM value as we do for `ghidraRun` launch script. In...
Since this can affect many people (assuming there are other contributers to the repository) it was decided that this would be a Ghidra Server admin responsibility from the server-side. It...
Are you working with multiple-users sharing the same project, or only one user? It does seem that if there is only one user/contributer who is ADMIN for a repository they...
> How is that possible? I simply meant a user creates a remote Shared Project via the UI but does not grant anybody else access to it and/or no other...
It is not a C Parser. How do you expect it to handle something like `unsigned int`?
Sorry, I forgot that the parser handled some C cases like "unsigned int" based upon specific cases defined by the DataTypeUtilities.cPrimitiveMap. So it appears to already support some C-specific syntax.
It may be preferable to handle this within the DataTypeUtiliies.getCPrimitiveDataType method so it be handled as a leading modifier which can be ignored.
The "struct" and "union" keywords need to be handled special and should agree with any resulting datatype instead of simply being ignored. These cannot be handled in the same manner...
The "inline" modifier should probably be handled separately so that it can toggle the function's inline flag and should not apply to all data type parsing
If you prefer, I can add this to my cue and address in a more appropriate fashion.