kenlistian

勤学多思

  IT博客 :: 首页 :: 新随笔 ::  :: 聚合  :: 管理 ::
  412 随笔 :: 0 文章 :: 23 评论 :: 0 Trackbacks

 

 [Linker Error] Unresolved external 'xxxxxx' referenced from F:\xxx\xxx\xxxx.OBJ


    出现这一错误的原因是链接程序没有找到函数xxxxx()的外部引用而引起的,经过查阅MSDN的资料后得知该函数需要“xxx.dll”的支持,而在BCB中却没有直接对该DLL提供相应的链接库。

     

   解决的步骤

  1. 复制文件xxx.dll到工程目录中
  2. 然后进入控制台并转入工程目录后,把dll convert to lib with bcb

  implib xxx.lib xxx.dll


  3. Add xxx.lb into your project ,and compiles again.,,then compile ok.

posted on 2013-05-09 17:26 kenlistian 阅读(362) 评论(0)  编辑 收藏 引用 所属分类: other
只有注册用户登录后才能发表评论。