I'm playing around simply trying to load the libMoIPCamera.so files to gain access to simple camera functions. I can't seem to find anywhere on SamyGo where this has been done.
I'm attempting to do this by:
Code: Select all
if ( (newHandle = dlopen("....libMoIPCamera_2058.so",RTLD_LAZY | RTLD_GLOBAL)) == NULL )
{
printf( "Could not open file : %s\n", dlerror() );
return 1;
}
Any thoughts on why the symbol is undefined.