在编写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中调用它们的更详细的解释。