use dll

I use dlopen to open dll and try to use one of function inside it,but it can’t pass through linking,it said the function doesn’t be declared.

Since you manually open the dll you must use dlsym() to find the fonction and then use the pointer return by dlsym to call the function.