Skip to content

Same function name in different interfaces #61

@burgerkingorama

Description

@burgerkingorama

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);

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions