Configuring the Call Library Function Node
- Updated2025-01-22
- 15 minute(s) read
Configuring the Call Library Function Node
Use the Call Library Function Node to directly call a 32-bit Windows DLL, a OS X Framework, or a Linux Shared Library function. With this node, you can create an interface in LabVIEW to call existing libraries or new libraries specifically written for use with LabVIEW. National Instruments recommends using the Call Library Function Node to create an interface to external code.
Right-click the Call Library Function Node and select Configure from the shortcut menu to display the Call Library Function dialog box. Use the Call Library Function dialog box to specify the library, function, parameters, return value for the node, calling conventions, and function callbacks on Windows. When you click the OK button in the Call Library Function dialog box, LabVIEW updates the Call Library Function Node according to your settings, displaying the correct number of terminals and setting the terminals to the correct data types.
Configuring Library Name or Path
You must specify either the name of the shared library or the path to the shared library on disk. However, these two techniques produce different consequences when you distribute or relocate your VIs and applications.
If you want to run applications or shared libraries created on different platforms, use the * wildcard to make the reference to the shared library platform independent. Use * for the file extension and * or ** to the left of the file extension, depending on how you name 32-bit and 64-bit libraries.
The following example illustrates how to use the * wildcard.
Example | Translation |
---|---|
myshared.* | LabVIEW replaces the reference with the appropriate file extension to match the platform that is running the Call Library Node, for example, myshared.dll, myshared.so, and myshared.framework. |
myshared*.* | LabVIEW replaces the reference with myshared32.* on 32-bit platforms and myshared64.* on 64-bit platforms. You can place the * anywhere to the left of the file extension. For example, my*shared.* can translate to my32shared.*. LabVIEW replaces .* with the appropriate file extension. |
myshared**.* | LabVIEW replaces the reference with myshared.* on 32-bit platforms and myshared_64.* on 64-bit platforms. You can place the ** anywhere to the left of the file extension. For example, my**shared.* can translate to my_64shared.*. LabVIEW replaces .* with the appropriate file extension. |
Related Information
Configuring for Multiple Thread Operation
In a multithreaded operating system, you can make multiple calls to a DLL or shared library simultaneously. You can select the thread to execute the library call from the Thread section on the Function tab of the Call Library Function dialog box. The thread options are Run in UI thread and Run in any thread. If you select Run in UI thread, the Call Library Function Node switches from the thread the VI is currently executing in to the user interface thread. If you select Run in any thread, the Call Library Function Node continues in the currently executing thread. By default, all Call Library Function Nodes run in the user interface thread.
Before you configure a Call Library Function Node to run in any thread, make sure that multiple threads can call the function simultaneously. In a shared library, code can be considered thread-safe when:
- It does not store any global data, such as global variables, files on disk, and so on.
- It does not access any hardware. In other words, the code does not contain register-level programming.
- It does not make any calls to any functions, shared libraries, or drivers that are not thread safe.
- It uses semaphores or mutexes to restrict access to global resources.
- It is called by only one non-reentrant VI.
Related Information
Setting the Calling Convention
Calling conventions define the way to pass information from a piece of code to a function. Use the Calling convention control on the Function tab of the Call Library Function dialog box to select the calling convention for the function. The default calling convention is C. The C calling convention allows variable-length parameter lists.
(Windows) You also can use the standard Windows calling convention, stdcall. The number of parameters passed to the function is fixed.
Refer to the documentation for the DLL you want to call for the appropriate calling conventions.
Configuring Parameters
This section discusses the return value and how to add parameters to the Call Library Function Node.
To configure parameters for the Call Library Function Node, navigate to the Parameters tab of the Call Library Function dialog box. Initially, the Call Library Function Node has no parameters and has a return type of Void.
As you configure parameters, the Function Prototype text box displays the C prototype for the function you are building. This text box is a read-only display.
The return type for the Call Library Function Node returns to the right terminal of the top terminal. If the return type is Void, the top terminal is unused. Each additional pair of terminals corresponds to a parameter in the Parameters list of the Call Library Function Node. To pass a value to the Call Library Function Node, wire to the left terminal of a terminal pair. To read the value of a parameter after the Call Library Function Node call, wire from the right terminal of a terminal pair. The following illustration shows a Call Library Function Node that has a return type of Void, a string parameter, and a numeric parameter.
Configuring Return Type
For return type, you can set Type to Void, Numeric, or String. Void is only available for return type and is not available for other parameters. Use Void for the return type if your function does not return any values.
Even if the function you call returns a value, you can use Void for the return type. When the function returns a value and you select Void as the return type, the value returned by the function is ignored.
Related Information
Adding and Deleting Parameters
To add parameters to the Call Library Function Node, navigate to the Parameters tab of the Call Library Function dialog box. Click the Add a parameter button. To remove a parameter, click the Delete the selected parameter button. To change the order of the parameters, use the Move the selected parameter up one and Move the selected parameter down one buttons to the right of the parameter list.
Editing Parameters
Select the parameter from the Parameters list to edit the data type or parameter name. You can edit the parameter name to something more descriptive, which makes it easier to distinguish between parameters. The parameter name does not affect the call, but it is propagated to output wires. Also, you can edit all fields in the Current parameter section for the selected parameter.
Selecting the Parameter Type
Use the Type pull-down menu to indicate the data type of each parameter. You can select from the following parameter types:
- Numeric
- Array
- String
- Waveform
- Digital Waveform
- Digital Data
- ActiveX
- Adapt to Type
- Instance Data Pointer
After you select an item from the Type pull-down menu, you see more items you can use to indicate details about the parameter and about how to pass the data to the library function. The Call Library Function Node has a number of different items for parameter types because of the variety of data types required by different libraries. Refer to the documentation for the library you call to determine which parameter types to use.
The following sections discuss the different parameter types available from the Type pull-down menu.
(Windows) Refer to the labview\examples\Connectivity\Libraries and Executables\Libraries and Executables.lvproj for an example of using data types in shared libraries.
Related Information
Numeric
For numeric data types, you must indicate the exact numeric type by using the Data Type pull-down menu. You can choose from the following data types:
- 8-, 16-, 32-, 64-bit, and pointer-sized signed and unsigned integers
- 4-byte, single-precision numbers
- 8-byte, double-precision numbers
If you use pointer-sized integers, the Call Library Function Node adapts to the specific operating system it is being executed on and passes data of the appropriate size to and from the library function. LabVIEW represents the data in 64 bits and, on 32-bit platforms, translates the numeric data types to 32-bit integer types.
Use the Pass pull-down menu to indicate whether you want to pass the value or a pointer to the value.
Array
Use the Data Type pull-down menu to indicate the data type of the array. You can choose from the same data types available for numeric parameters.
Specify the dimensions of the array in Dimensions.
Use the Array Format pull-down menu to make one of the following choices:
- Array Data Pointer —passes a pointer to the array data, allowing the called library to access the array data as the specified data type of the array data.
- Array Handle —passes a pointer to a pointer that points to a four-byte value for each dimension, followed by the data.
- Array Handle Pointer —passes a pointer to an array handle.
Use the Minimum size control to have LabVIEW check at run time that the memory LabVIEW allocated for an array data pointer is at least the Minimum size. To indicate the Minimum size of a 1D array, you can enter a numeric value, or, if you configure an integer parameter in the Parameters list, you can select the parameter from the pull-down menu. This option is available only for array data pointers.
Related Information
String
Use the String Format pull-down menu to indicate the string format. You can choose from the following string formats:
- C String Pointer —a string followed by a null character.
- Pascal String Pointer —a string preceded by a length byte.
- String Handle —a pointer to a pointer to four bytes for length information, followed by string data.
- String Handle Pointer —a pointer to an array of string handles.
Select a string format that the library function expects. Most standard libraries expect either a C string or a Pascal string. If the library function you are calling is written for LabVIEW, you might want to use the String Handle format. When configuring a Pascal string pointer, you must wire a value to the string input on the block diagram. That value must be initialized with enough characters to hold any new string that may be written to that Pascal string. When configuring a C string pointer, you have two options:
- Wire a value to the string input that is initialized with enough characters to hold any new string that may be written to that string.
- Specify the string size in the Minimum size pull-down menu on the Parameters tab of the Call Library Function dialog box.
Use the Minimum size control to have LabVIEW check at run time that the memory LabVIEW allocated for a C string pointer is at least the Minimum size. To indicate the Minimum size of a string, you can enter a numeric value, or, if you configure an integer parameter in the Parameters list, you can select the parameter from the pull-down menu. This option is available only for C string pointers.
Waveform
When you call a shared library that includes a waveform data type, you do not have to specify a numeric value from the Data Type pull-down menu; the default is 8-byte Double. However, you must specify Dimensions. If the parameter is a single waveform, specify Dimensions as 0. If the parameter is an array of waveforms, specify Dimensions as 1. LabVIEW does not support an array of waveforms greater than one-dimensional.
Digital Waveform
Specify Dimensions as 0 if the parameter is a single digital waveform. Specify Dimensions as 1 if the parameter is an array of digital waveforms. LabVIEW does not support an array of digital waveforms greater than one-dimensional.
Digital Data
Specify Dimensions as 1 if the Parameter is an array of digital data. Otherwise, specify Dimensions as 0. LabVIEW does not support an array of digital data greater than one-dimensional.
ActiveX
Select one of the following items from the Data Type pull-down menu:
- ActiveX Variant Pointer —passes a pointer to ActiveX data.
- IDispatch* Pointer —passes a pointer to the IDispatch interface of an ActiveX Automation server.
- IUnknown* Pointer —passes a pointer to the IUnknown interface of an ActiveX Automation server.
Related Information
Adapt to Type
Use Adapt to Type to pass arbitrary LabVIEW data types to DLLs in the following ways:
- Scalars are passed by reference. A pointer to the scalar is passed to the library.
- Arrays and strings are passed according to the
Data Format
setting. You can choose from the following
Data Format
settings:
- Handles by Value passes the handle to the library. The handle is not NULL.
- Pointers to Handles passes a pointer to the handle to the library. If the handle is NULL, treat the handle as an empty string or array. To set a value when the handle is NULL, you must allocate a new handle.
- Array Data Pointer passes a pointer to the first element of the array, allowing the called library to access the array data as the data type of the array data.
- Interface to Data allows you to inspect LabVIEW data and data type information in C++ code. For more information about this setting, refer to the ILVDataInterface.idl and ILVTypeInterface.idl files in the labview\cintools directory.
- Clusters are passed by reference.
- Scalar elements in arrays or clusters are in line. For example, a cluster containing a numeric is passed as a pointer to a structure containing a numeric.
- Clusters within arrays are in line.
- Strings and arrays within clusters are referenced by a handle.
Related Information
Instance Data Pointer
Use Instance Data Pointer to access data allocated for each instance of the Call Library Function Node. The Instance Data Pointer references a pointer sized allocation that you may use at your own discretion. This allocation is also passed to each of the callback functions on the Callbacks tab.
Configuring Callbacks
When you configure a Call Library Function Node to call a function, you can use the Callback tab to specify other functions within the same library to call at the following times:
- Reserve time—When the top-level VI that causes the Call Library Function Node to execute begins executing. Specify a Reserve callback when you need to perform initialization tasks before the primary function executes.
- Unreserve time—When the top-level VI that caused the Call Library Function Node to execute stops executing. Specify an Unreserve callback when you save or analyze information or carry out clean-up operations.
- Abort—The specified function executes if the VI that called the primary function aborts.
Calling Functions That Expect Other Data Types
You might encounter a function that expects data in a form that the Call Library Function Node cannot pass. Specifically, the Call Library Function Node does not support structures or arrays containing a pointer to other data or structures containing flat arrays that can be variably sized. You can call a function that expects an unsupported data type in the following ways:
- If the data contains no pointers, you might be able to use the Flatten To String function to create a string containing the binary image of the data required and pass this string as a C string pointer. You will probably want to use the byte order input to Flatten To String to specify that the data be flattened in native byte order.
- Write a library function that accepts the data in the form used by LabVIEW and builds the data structure expected by the other library. This function then can call the other library and retrieve any returned values before returning. Your function will probably accept the data from the block diagram as Adapt to Type, so that any block diagram data type can be passed.
- If the function expects a callback function as a parameter, complete the following steps to call the function from LabVIEW.
- Write a wrapper library that defines at least two new functions:
- A wrapper function that accepts from LabVIEW any data required by the original function. This wrapper function must call the original function, passing the data from LabVIEW as well as a callback function that you define in the same wrapper library.
- The callback function that you want to pass to the original function.
- Call the wrapper function with the Call Library Function Node.
- Write a wrapper library that defines at least two new functions:
Related Information
Configuring Error Checking
Use error checking to ensure no errors occur if you call a DLL or shared library with the Call Library Function Node.
The Maximum and Default controls on the Error Checking tab of the Call Library Function dialog box allow LabVIEW to recover from unhandled exceptions that occur in the configuration of the Call Library Function Node or during a call to a shared library or DLL. The Disabled control on the Error Checking tab disables error checking but improves the execution speed of the Call Library Function Node.
If you use the Call Library Function Node to call a shared library generated by LabVIEW, the node automatically calls the LVDLLStatus function embedded in the shared library. For these LabVIEW-generated shared libraries, this function detects certain errors, including the following:
- A VI inside the shared library uses licensed features that are not installed on the target computer.
- A VI inside the shared library uses a Call Library Function Node whose associated shared library is not installed on the target computer.
- The VIs inside the shared library were compiled using the SSE2 optimizations but the target computer does not support SSE2 instructions.
In these cases, the Call Library Function Node returns error 1003.
In This Section
- Configuring Library Name or Path
- Configuring for Multiple Thread Operation
- Setting the Calling Convention
- Configuring Parameters
- Configuring Return Type
- Adding and Deleting Parameters
- Editing Parameters
- Selecting the Parameter Type
- Numeric
- Array
- String
- Waveform
- Digital Waveform
- Digital Data
- ActiveX
- Adapt to Type
- Instance Data Pointer
- Configuring Callbacks
- Calling Functions That Expect Other Data Types
- Configuring Error Checking