Fork me on GitHub
摘要: #include #include using namespace std; typedef int(*Dllfun)(int , int); void main() { Dllfun f; HINSTANCE hdll; hdll = LoadLibrary("MyDll.dll"); if (hdll == NULL) { FreeLibrary(hdll); } f = (Dllfun)... 阅读全文
posted @ 2016-07-06 14:30 千秋此意 阅读(387) 评论(0) 推荐(0) 编辑