cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 2706|回复: 0

Creating a DLL in CVI That Can Be Called from LabVIEW

[复制链接]
发表于 2006-5-23 19:17:12 | 显示全部楼层 |阅读模式
转自NI
Primary Software: LabVIEW Development Systems>>Full Development System
Primary Software Version: 5.1
Primary Software Fixed Version: N/A
Secondary Software: N/A

Problem: How do I call a DLL that I created with CVI from the Call Library Function Node in LabVIEW 5.1?

Solution: Complete the following steps to create the DLL in CVI:

Open CVI and create a new project (.prj) and a new source (.c) file.


Edit the source file and add the following header lines:

/* Include files needed to compile DLL */#include <windows.h>#include <cvirte.h>     /* needed if linking DLL in external compiler;                                  harmless otherwise */#include <userint.h>          BOOL __stdcall DllMain (HINSTANCE hinstDLL, DWORD fdwReason,                         LPVOID lpvReserved){   return TRUE;}


Add a simple function or any code you want to the DLL. Mark the functions you want to export as DLLEXPORT. The following example code multiplies a number by two.

void DLLEXPORT twise (double *my){   *my *=2;        }


Select Build &raquo; Target in CVI and change the target to Dynamic Link Library.


Select Build &raquo; Create Dynamic Link Library. Make sure the Export What field is set to Symbols Marked to Export, as shown in the example linked below.

Complete the following steps to use the DLL in LabVIEW:

Open a new VI and place a Call Library Function Node on the block diagram.


Right-click the node and select Configure from the shortcut menu.


Navigate to the DLL you created.


In the Function window, enter the name of the function you want to call, such as twise.


Set the correct parameters and data types, as shown in the example linked below.


Wire the appropriate inputs and output to and from the Call Library Function Node and set the input values. All input terminals must have something wired to them.


Save the VI.


Run the VI. If all parameters are defined correctly, the VI should run successfully.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-4 20:03 , Processed in 0.542745 second(s), 7 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表