Usage of .so files

In reply to dave_59:

Dave, thank you very much for your answer and you work here! I wonder, how many engineers have learned verification with you help.
yes, what you say may be right, but could you please give example on how to do it modelsim 10.6 or a link where i can ask that? I do, of course, read manual but it takes days (or sometimes more) to find a soultion for every single mistake i make.
so far i’ve found, that i should write "export “C” before every C++ function

extern "C"
int myimport(int i)
{
 vpi_printf("The value of i is %d\n", i);
}

is this what should be done?
Thank you again, and I would really appreciate your help, because there are no many examples on stuff like this on the internet.