LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Library function call challange

Hi,

I need to make a library function call from within LabVIEW, but the function
requires linking to another library to reslove some other function calls. Is
there a way around this? Right now, to overcome the problem, I am using code
interface nodes, which is tedious, instead of library fucntion nodes. Thanks
in advance for any help.

Behzad.
0 Kudos
Message 1 of 2
(2,597 Views)
Sounds like you're talking about a static library that's linked to the code
at compile-time. In such a case, if you don't want to use a CIN you have to
make a DLL that has "wrapper functions". You call the functions you've
written in the DLL and they in turn call your library functions. All
required libraries are compiled and linked into this one DLL and you can
make a DLL call from Labview.

Behzad Abareshi wrote in message
news:9uojsp$1il2$1@noao.edu...
> Hi,
>
> I need to make a library function call from within LabVIEW, but the
function
> requires linking to another library to reslove some other function calls.
Is
> there a way around this? Right now, to overcome the problem, I am using
code
> interface nodes, which is tedious, instead
of library fucntion nodes.
Thanks
> in advance for any help.
>
> Behzad.
>
>
0 Kudos
Message 2 of 2
(2,597 Views)