ahgilak / deno_gi

Deno port of Gnome libraries (such as Gtk).
https://deno.land/x/deno_gi
33 stars 2 forks source link

pass around outArgs as pointers #13

Closed vixalien closed 11 months ago

vixalien commented 11 months ago

This method works by setting the outArgs initially by creating pointers. Setting the pointer for Interface types seems to be unnecessary, because they are just going to be reset (as they are out parameters.)

however, this can be useful for inOut parameters, so I'm keeping the code for now.

Please advise on this method, thanks!!