-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
None
-
Affects Version/s: repo-panama
-
Component/s: tools
Consider this example:
struct Foo {
int (*foo)(float, double);
};
For this, jextract generated (rightly) the getter/setter for the function pointer "foo".
However, the generated code doesn't feature a functional interface to help the user allocating a stub which can be assigned to the struct field. The same is true for global variables.
struct Foo {
int (*foo)(float, double);
};
For this, jextract generated (rightly) the getter/setter for the function pointer "foo".
However, the generated code doesn't feature a functional interface to help the user allocating a stub which can be assigned to the struct field. The same is true for global variables.