Hello,
when using same function names in different interfaces the C generated files will have duplicate function definitions.
Sample:
interface House
{
open() -> void
close() -> void
}
interface Car
{
open() -> void
close() -> void
}
Is there a way of automatically adding a prefix to the generated functions like:
void House_open(void);
void Car_open(void);