> And I have always a LV error : "DLL function call error: function not found
> in the library".
>
This is almost always called by mangling of function names. If you haven't
turned off the mangling option, VC will insert @, _, and other characters
into the name. That really doesn't matter as long as you can type those
into the LV Call Lib dialog box, but it is probably easier to turn off the
settings when building the DLL. The other thing that can happen of course,
is that the files are mangled to C++ function names which are huge. You
may try putting extern "C" around your .c file contents and try that.
Greg McKaskle