各位帮忙看看几行代码
#include"stdio.h"#include"windows.h"
typedef int (*p)(int,int);//定义函数指针
int main(void)
{
HANDLE t;//句柄
p j;
t=LoadLibrary("1.dll");
if(t=NULL)
{
printf("%s\n",t);
}
j=(p)GetProcAddress(t,"hh");//不明白这行怎么就出错了大家帮忙看看啊谢了。
return 0;
}