> Does LabVIEW slows down the time performance of the dll call due to
> passing data process or something like that ? If that is the case,
> does anyone knows how to speed up this ?
The first thing to look at is whether the DLL is safe to be called from
more than one thread, or does your program only call it from one place.
If so, then you can configure the DLL Node to be marked reentrant.
Double click it and check the box for reentrant execution.
As a visual clue, the nodes that run in the UI will are orange and the
reentrant ones are yellow.
If you still find some speed differences, they are likely due to data
conversions between LV types and C types.
Greg McKaskle