[Vala] GSL binding problem: OdeivEvolve::apply

2009-03-09 Thread Feng Yu
Dear Martin, I notice another issue with Gsl binding. In Gsl.OdeivEvolve::apply, the time t and the step size are defined as an array. But they are really in-out parameters, which should be defined as 'ref'., aka: ref double t, ... ref double h. I don't know if there are also similar issues

[Vala] Windows Low level with Vala

2009-03-09 Thread fsw . fb
Hello, as a vala newbie I want to thank to all devs involved in vala. I know vala is intended for the gnome platform, but it looks like vala could be more than that. So I would like to use vala as a general-purpose programming language on WindowsXP (instead of C#). This would include to be

Re: [Vala] GSL binding problem: OdeivEvolve::apply

2009-03-09 Thread Martin Vales
hi! Dear Martin, I notice another issue with Gsl binding. In Gsl.OdeivEvolve::apply, the time t and the step size are defined as an array. But they are really in-out parameters, which should be defined as 'ref'., aka: ref double t, ... ref double h. I don't know if there are also similar

Re: [Vala] GSL binding problem: OdeivEvolve::apply

2009-03-09 Thread Matías De la Puente
Hi, Yu I'm on it :) Matias ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Windows Low level with Vala

2009-03-09 Thread Frederik
fsw...@comcast.net wrote: Hello, as a vala newbie I want to thank to all devs involved in vala. I know vala is intended for the gnome platform, but it looks like vala could be more than that. So I would like to use vala as a general-purpose programming language on WindowsXP (instead of

[Vala] Friend class?

2009-03-09 Thread Yu Feng
Dear list, Are friend classes available in VALA? If not, are there any particular reason against it, and are there any alternatives for friend classes? Regards, Yu ___ Vala-list mailing list Vala-list@gnome.org

Re: [Vala] Friend class?

2009-03-09 Thread Hans Baier
2009/3/10 Yu Feng rainwood...@gmail.com: Dear list, Are friend classes available in VALA? If not, are there any particular reason against it, and are there any alternatives for friend classes? Regards, Yu If you need friend classes, you should probably redesign the code. What do you need