I'm trying to call a C++ DLL from my fortran code. I know how to declare the functions in FORTRAN for this, but what I don't know is how to actually link the C++ DLL to my FORTRAN program. In the past I have called C DLL's but they came with a static library ".lib" file that I could...
I need to write an application that can access data comming in on a USB port. Does anyone know how to access a device on the USB port or can anyone point me in the right direction to find out how to do this?
Cameron
I have a program which calls a function in a library. The function returs a 4 byte character array which contains a (BFP32) binary floating point 32 bit value. I can not seem to get the floating point value out of this 4 byte string. Does anyone have a clue as to how I could go about doing this...
I have a fortran DLL I'm trying to call for a VB main exe. The call goes fine, but control is never transfered back from the the Fortran DLL. I'm trying to return an array of numbers. I know the DLL is working because I printed the array from the Fortran into a text file as a check. This occurs...