Closed haxiomic closed 3 years ago
class Example { public function new(str: String); public function method(x: Int): Example; }
Would generate the following C functions
HaxeObject Example_new(); HaxeObject Example_method(HaxeObject instance, int x);
And automatically apply the retainer wrapping/unwrapping
Done :]
Would generate the following C functions
And automatically apply the retainer wrapping/unwrapping