I have a C program in Visual Studio that reads temperature from DAQs. I wanted to take this c file and put it into a shared library project in Visual Studio. However, when I try to run the program, it gives me 10 errors that look like this:
unresolved external symbol DAQmxCreateTask referenced in function main
I have NIDAQmx.h included in the project so I'm not sure why CreateTask is considered an external symbol. I'm not sure what causes this problem, could anyone help?
Thank you!