Hello mail list If I have a shared library written in C++ that look like this: // suma.cc: extern "C" { float suma (float a, float b) { return a+b; } } // extern "C" haw to call the function suma(a,b) from gambas? my best Adrian