vs2010中添加dll文件
Posted deadwood_2016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2010中添加dll文件相关的知识,希望对你有一定的参考价值。
1.更改设置
1.1 project->properties->configuration properties->C/C++->General->Addtional Include Directories->放dll文件的路径
1.2 project->properties->configuration properties->Linker->General->Addtional Library Directories->放dll文件的路径
1.3 project->properties->configuration properties->Linker->Input->Additional Dependencies
2. 代码引用
2.1 HINSTANCE hDLL;
hDLL=NULL;
hDLL=LoadLibrary("*.dll");
if( NULL == hDLL )
{
fprintf(stderr,"Error loading *.DLL");
return -1;
}
以上是关于vs2010中添加dll文件的主要内容,如果未能解决你的问题,请参考以下文章
怎么在C#中添加用C语言开发的动态链接库dll文件(vs2010)?