1. 首页
  2. 编程语言
  3. C++ 
  4. 加载动态库

加载动态库

上传者: 2019-01-12 07:41:53上传 RAR文件 14.44KB 热度 30次
没有头文件和静态库加载C++类的输出动态库,一言不合上代码 class CTest { public: CTest(LPCSTR szDll,LPCSTR sText) { m_hdl = LoadLibrary( szDll ); FARPROC proc = GetProcAddress(m_hdl, "??0CSampleDll@@QAE@PBD@Z"); *((FARPROC*)&m_Construct)=proc; (this->*m_Construct)(sText); proc = GetProcAddress(m_hdl, "??1CSampleDl
用户评论