Re: [Gambas-user] External Variables

2011-06-27 Thread Jussi Lahtinen
If you use Gambas 3, look at GSLSpline example. It uses external object, but you can use external variables in similar way. gsl_interp_cspline = Pointer@(System.GetExternSymbol("libgsl:0", "gsl_interp_cspline")) Jussi On Mon, Jun 27, 2011 at 13:12, tobias wrote: > hi, > > i have a component t

[Gambas-user] External Variables

2011-06-27 Thread tobias
hi, i have a component that should use a variable (or class) which is declared globally in a project. i know that this isn't good practice but i just want to know if it is possible to tell the compiler not to look for this variable and that it can be resolved when the component loaded. the onl