Oleg really pointed you in the right direction. If you need more details:
1. On your diagram, right-click on empty space, goto to Advanced palette, and select Call Library Function Node.
2. Double-click on Call Library Function Node (or right-click on Call Library Function Node and select Configure). A dialog box titled Call Library Function will open.
3. In the box titled Library Name or Path, enter the path to the DLL. Note: if this DLL calls a second DLL, that second DLL must be on the search path).
4. In the box titled Function Name, enter the function name (case sensitive) or select the Function Name from the pull-down list.
5. Select the Calling Conventions (C or WINAPI) used by the DLL.
6. Specify the return type.
7. If any parameters are passe
d, click Add a Parameter After.
8. In the box titled Parameter, enter the parameter name.
9. Select the Type and Data Type of the parameter.
10. If the data is numeric, using the pull-down list titled Pass, select Value or Pointer. You'll have similar choices (labeled differently) for different data types.
11. To add another parameter, click Add a Parameter After or Add a Parameter Before.
12. If you use an array, make sure you initialize the array in LabView to the size the DLL needs. Don't re-size the array in the DLL or you may crash your program.