1
I’m trying to upload a file .so
, but this title error is showing up. Can anyone help me?
#include <iostream>
#include <dlfcn.h>
#include <stdio.h>
using namespace std;
int main()
{
void *abrir;
abrir = dlopen("EZClient.so", RTLD_NOW);
if(!abrir)
{
printf("%s\n", dlerror());
return -1;
}
return 0;
}