在C++中创建dll文件



主要软件: LabVIEW Development Systems>>LabVIEW Full Development System
主要软件版本: 2010 SP1
主要软件修正版本: N/A
次要软件: N/A

问题:

怎样使用C++语言创建dll文件?


解答:

在编写DLL时,必须像下面一样声明你的函数类型:


// this makes my_function accessible when calling the DLL


extern "C" __declspec(dllexport) int my_function(int argument);


你的函数写成如下形式:


extern "C" __declspec(dllexport) int my_function(int argument)


{


// Insert Code Her


return 0;


}


请参阅下面的链接,获得关于创建dll并在LabVIEW中调用它们的更详细的解释。


相关链接:

附件:





报告日期: 12/13/2002
最近更新: 08/04/2017
文档编号: 2SCA44HM