1 Star 1 Fork 0

hotmocha/spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dl.c 926 Bytes
一键复制 编辑 原始数据 按行查看 历史
hotmocha 提交于 2015-04-02 22:29 . spider init
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <string.h>
#include <signal.h>
#include <dlfcn.h>
#include <sys/types.h> /* See NOTES */
#include <sys/socket.h>
#include "workerpub.h"
typedef int (*SoMain)();
int LoadLibrary(char *filename, void** ppHandle)
{
void *handle;
char *error = NULL;
handle = dlopen(filename, RTLD_LAZY);
if (!handle) {
fprintf(stderr, "%s\n", dlerror());
return -1;
}
*ppHandle = handle;
return 0;
}
int GetStartfunc(void *pHandle, char* funcname, int (**func)())
{
char *error = NULL;
*func = dlsym(pHandle,funcname);
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
return -1;
}
return 0;
}
int main()
{
void *pHandle = NULL;
LoadLibrary("./librenrendai.so", &pHandle);
int (*func)();
printf("ii\n");
GetStartfunc(pHandle, "SoMain", &func);
printf("jj\n");
func();
printf("hh\n");
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hotmocha/spider.git
[email protected]:hotmocha/spider.git
hotmocha
spider
spider
master

搜索帮助