<div dir="ltr"><div>OK, thanks for the answer.</div><div><br></div><div><br></div><div>Jussi<br> </div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jan 21, 2020 at 12:15 AM Benoît Minisini <<a href="mailto:g4mba5@gmail.com">g4mba5@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Le 20/01/2020 à 23:08, Jussi Lahtinen a écrit :<br>
> Is there going to be support for byfer?<br>
> <br>
> Jussi<br>
<br>
'ByRef' in Gambas is a mix of syntactic sugar (done by the compiler) and <br>
stack trick (done by the interpreter).<br>
<br>
Calling Func(ByRef A, ByRef B) does that:<br>
- Enter function Func<br>
- Run the function<br>
- Put the value of local A et B on the stack<br>
- Leave the function<br>
- Get from stack the new values of A and B.<br>
<br>
I don't know how to do it cleanly in C at the moment. This is not the <br>
same thing as pointers!<br>
<br>
-- <br>
Benoît Minisini<br>
</blockquote></div>